diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-08-09 17:06:45 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-08-09 17:06:45 +0200 |
commit | 7c019e133f0c3a5f9d26a94c77d240d6151d064d (patch) | |
tree | 62f8e531f2209e61fd22e206cf1e4120978d7178 | |
parent | 2b54c2bfa444fd7f4c4acf415dd19d1d02b92ff0 (diff) | |
download | nixos-7c019e133f0c3a5f9d26a94c77d240d6151d064d.tar nixos-7c019e133f0c3a5f9d26a94c77d240d6151d064d.tar.gz nixos-7c019e133f0c3a5f9d26a94c77d240d6151d064d.tar.bz2 nixos-7c019e133f0c3a5f9d26a94c77d240d6151d064d.tar.xz nixos-7c019e133f0c3a5f9d26a94c77d240d6151d064d.zip |
cleanup
-rw-r--r-- | users/gkleen@odin.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/users/gkleen@odin.nix b/users/gkleen@odin.nix index 0427b1d6..5353551a 100644 --- a/users/gkleen@odin.nix +++ b/users/gkleen@odin.nix | |||
@@ -9,13 +9,13 @@ | |||
9 | sha256 = "02a4py7zx9ib49kijpjckya1pb8xlb3gmp7s1dybsdjmwqbdyzx7"; | 9 | sha256 = "02a4py7zx9ib49kijpjckya1pb8xlb3gmp7s1dybsdjmwqbdyzx7"; |
10 | }; | 10 | }; |
11 | }); | 11 | }); |
12 | buchhaltung = pkgs.symlinkJoin { | 12 | buchhaltung = pkgs.haskell.lib.overrideCabal pkgs.haskell."ghc822".packages.buchhaltung (oldAttrs: { |
13 | inherit (pkgs.haskellPackages.buchhaltung) name; | 13 | buildInputs = oldAttrs.buildInputs or [] ++ [ pkgs.makeWrapper ]; |
14 | paths = pkgs.haskellPackages.buchhaltung; | ||
15 | postBuild = '' | 14 | postBuild = '' |
15 | ${oldAttrs.postBuild or ""} | ||
16 | wrapProgram $out/bin/buchhaltung \ | 16 | wrapProgram $out/bin/buchhaltung \ |
17 | --prefix PATH : ${pkgs.lib.makeBinPath (with pkgs; [ aqbanking dbacl ])} | 17 | --prefix PATH : ${pkgs.lib.makeBinPath (with pkgs; [ aqbanking dbacl ])} |
18 | ''; | 18 | ''; |
19 | }; | 19 | }); |
20 | } // (import ../utils/nix/default.nix) pkgs (import <nixpkgs> {}); | 20 | } // (import ../utils/nix/default.nix) pkgs (import <nixpkgs> {}); |
21 | } | 21 | } |