Update dependencies

This commit is contained in:
Charlotte Van Petegem 2022-04-05 09:47:00 +02:00
parent f414956560
commit f18f2f687f
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 19 additions and 26 deletions

36
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1648709656, "lastModified": 1649109066,
"narHash": "sha256-NsLdMQGkpGf28RulgEqdmqRL0cQ/nOGSKtW9kZlrAn4=", "narHash": "sha256-terFfwEICxUrq/1hPsAlv5CFQDjqco+C7nWAFI76B98=",
"owner": "accentor", "owner": "accentor",
"repo": "flake", "repo": "flake",
"rev": "ed1cdc7fec57858c081251bee53ec248a786bd2e", "rev": "627d36fe4ecae00de6740cf1ba35714b33b7312d",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -58,11 +58,11 @@
}, },
"emacs-overlay": { "emacs-overlay": {
"locked": { "locked": {
"lastModified": 1649097144, "lastModified": 1649128109,
"narHash": "sha256-sZSwz+w8CEfdhHjS3sTMmqXvyhSQ4UVDsYUH9jwD2N8=", "narHash": "sha256-KYj8bJJJDdo1jH4+Au6hrEBlXg+0pPtpOWp1WoLDqxA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "emacs-overlay", "repo": "emacs-overlay",
"rev": "3ba65e6ffec27162f6f62b9b6b2944669c26a43e", "rev": "d32cf21820f0c14bb4dc7911e4d8d81b891a8f82",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -93,11 +93,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1649084009, "lastModified": 1649130493,
"narHash": "sha256-jfU0rYnMbL8jMNH+o+BYGxsb7d+HrtbFYtG5/kbQDLc=", "narHash": "sha256-tp2UxeS1A5ESb+I/rh4GoD0DH7edOGdc2fsP6D8o27Y=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "0382c5f75e9b4ffb0cdc75535c3e249019710a02", "rev": "07b941f0c45ac4af6732d96f4cb6142824eee3df",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -130,11 +130,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1648632716, "lastModified": 1649012074,
"narHash": "sha256-kCmnDeiaMsdhfnNKjxdOzwRh2H6eQb8yWAL+nNabC/Y=", "narHash": "sha256-vQUROcJ3FfT3GTB/nJrXwVvjuq8WfK0ImN+RUgDVN1c=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "710fed5a2483f945b14f4a58af2cd3676b42d8c8", "rev": "bc4b9eef3ce3d5a90d8693e8367c9cbfc9fc1e13",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -146,11 +146,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1649084639, "lastModified": 1649123408,
"narHash": "sha256-4dpZHwlJAXLnus4T3snJ26mrVVDnxkKkzFvX+/FbF3c=", "narHash": "sha256-BN5cGiGKr/VCrrMiWCgCIlbXiXdzZs8YMYMZ21Ms1Fk=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "17d2a5097fba459df1e5622138f4d81e55223f52", "rev": "61bf41f82a4728216cc914f62ffd66d12d422fb7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -179,11 +179,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1648901234, "lastModified": 1649108259,
"narHash": "sha256-uVQn158PLpChdT/96KsXy0mAZdZ8rjtoCoCImr1xDBY=", "narHash": "sha256-p0t5gUMB3hw+V3eMJetpJbBS8c7lSU9+luMWzgXbHZM=",
"owner": "chvp", "owner": "chvp",
"repo": "tetris", "repo": "tetris",
"rev": "ace36fe962d4a0bdd0dcf42895983a0c945efffc", "rev": "6cadbb36b6e35fd2a57db5f44d2206b3a6a42498",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -25,14 +25,7 @@
]; ];
home-manager.users.charlotte = { ... }: { home-manager.users.charlotte = { ... }: {
home.packages = [ home.packages = [ pkgs.hledger ];
(pkgs.haskell.lib.justStaticExecutables (pkgs.haskellPackages.override {
overrides = hself: hsuper: rec {
hledger = hsuper.hledger_1_24_1;
hledger-lib = hsuper.hledger-lib_1_24_1;
};
}).hledger)
];
}; };
}; };
} }