Install hpack

This commit is contained in:
Alexander Kobjolke 2022-03-16 18:48:51 +01:00
parent e69177f0ed
commit 3b1d972780
3 changed files with 20 additions and 26 deletions

39
flake.lock generated
View file

@ -2,7 +2,9 @@
"nodes": { "nodes": {
"agenix": { "agenix": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs" "nixpkgs": [
"nixpkgs"
]
}, },
"locked": { "locked": {
"lastModified": 1641576265, "lastModified": 1641576265,
@ -72,15 +74,18 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1618628710, "lastModified": 1643659724,
"narHash": "sha256-9xIoU+BrCpjs5nfWcd/GlU7XCVdnNKJPffoNTxgGfhs=", "narHash": "sha256-Nbqsx8F6zQ4McvtYZirMQnGGZKK/toBN+D/KAotlFJY=",
"path": "/nix/store/z1rf17q0fxj935cmplzys4gg6nxj1as0-source", "owner": "NixOS",
"rev": "7919518f0235106d050c77837df5e338fb94de5d", "repo": "nixpkgs",
"type": "path" "rev": "020d63c7e9734fda828f34513be02aa1b103c501",
"type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "owner": "NixOS",
"type": "indirect" "ref": "nixos-21.11-small",
"repo": "nixpkgs",
"type": "github"
} }
}, },
"nixpkgs-21_05": { "nixpkgs-21_05": {
@ -113,27 +118,11 @@
"type": "indirect" "type": "indirect"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1642961095,
"narHash": "sha256-RLatktZmvwFBOyqdoIk4qdS4OGKB7aKIvvs4ZP2L8D8=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "604c44137d97b5111be1ca5c0d97f6e24fbc5c2c",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-21.11-small",
"repo": "nixpkgs",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"agenix": "agenix", "agenix": "agenix",
"hm": "hm", "hm": "hm",
"nixpkgs": "nixpkgs_2", "nixpkgs": "nixpkgs",
"snm": "snm", "snm": "snm",
"utils": "utils_2" "utils": "utils_2"
} }

View file

@ -16,7 +16,10 @@
}; };
# age for nix to store encrypted passwords conveniently # age for nix to store encrypted passwords conveniently
agenix.url = "github:ryantm/agenix"; agenix ={
url = "github:ryantm/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { self, hm, nixpkgs, agenix, ... }@inputs: { outputs = { self, hm, nixpkgs, agenix, ... }@inputs: {
inherit self inputs; inherit self inputs;

View file

@ -40,6 +40,7 @@
hledger-iadd hledger-iadd
hledger-ui hledger-ui
smos smos
#haskellPackages.patat # terminal based presentations using pandoc
# editors # editors
emacs emacs
@ -57,6 +58,7 @@
haskellPackages.cabal-fmt haskellPackages.cabal-fmt
haskellPackages.stylish-haskell haskellPackages.stylish-haskell
haskellPackages.ormolu haskellPackages.ormolu
haskellPackages.hpack
]; ];
home.extraOutputsToInstall = [ "doc" "info" "devdoc" ]; home.extraOutputsToInstall = [ "doc" "info" "devdoc" ];