Attemp to roll back to older gnucash

This commit is contained in:
Zonsopkomst 2024-01-25 16:48:16 -06:00
parent 8fcce1cdb8
commit 01d534ffbd
2 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,12 @@
# Notes for Gnucash Older Version
let
pkgs = import (builtins.fetchGit {
# Descriptive name to make the store path easier to identify
name = "gnucash-5.4";
url = "https://github.com/NixOS/nixpkgs/";
ref = "refs/heads/nixpkgs-unstable";
rev = "9957cd48326fe8dbd52fdc50dd2502307f188b0d";
}) {};
myPkg = pkgs.gnucash;
in

View file

@ -14,7 +14,7 @@
element-desktop # Matrix Client
easytag # Music Tag Editor
freetube # YouTube Front-End
gnucash # Double Entry Accounting Software
#gnucash # Double Entry Accounting Software
gpodder # Podcast Manager
gretl # Econometric Analysis
gzdoom # Doom Clone based on ZDoom
@ -52,6 +52,20 @@
xiphos # Bible Study Tool
xournalpp # PDF Annotation
zathura # PDF Viewer
# 01/25/2024 First Attempt at Rolling Back to an Older Package
{
pkgs = import (builtins.fetchGit {
# Descriptive name to make the store path easier to identify
name = "gnucash-5.4";
url = "https://github.com/NixOS/nixpkgs/";
ref = "refs/heads/nixpkgs-unstable";
rev = "9957cd48326fe8dbd52fdc50dd2502307f188b0d";
}) {};
myPkg = pkgs.gnucash;
}
];
imports = [