summaryrefslogtreecommitdiff
path: root/users/gkleen@odin.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2018-09-11 10:33:01 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2018-09-11 10:33:01 +0200
commit12e69b998f9f900567555676aac67df65a2361eb (patch)
treefa45ed428d4dc3b99e04cf48c10015483952d871 /users/gkleen@odin.nix
parent401934f7101ed61338c0aae7b37ec8584f589ee5 (diff)
downloadnixos-12e69b998f9f900567555676aac67df65a2361eb.tar
nixos-12e69b998f9f900567555676aac67df65a2361eb.tar.gz
nixos-12e69b998f9f900567555676aac67df65a2361eb.tar.bz2
nixos-12e69b998f9f900567555676aac67df65a2361eb.tar.xz
nixos-12e69b998f9f900567555676aac67df65a2361eb.zip
...
Diffstat (limited to 'users/gkleen@odin.nix')
-rw-r--r--users/gkleen@odin.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/users/gkleen@odin.nix b/users/gkleen@odin.nix
index 175ff6c5..2c8c461e 100644
--- a/users/gkleen@odin.nix
+++ b/users/gkleen@odin.nix
@@ -14,10 +14,10 @@
14 packages = pkgs.haskell.packages // { 14 packages = pkgs.haskell.packages // {
15 ghc822 = pkgs.haskell.packages.ghc822.extend (selfH: superH: { 15 ghc822 = pkgs.haskell.packages.ghc822.extend (selfH: superH: {
16 ListLike = pkgs.haskell.lib.overrideCabal superH.ListLike (oldAttrs: { 16 ListLike = pkgs.haskell.lib.overrideCabal superH.ListLike (oldAttrs: {
17 libraryHaskellDepends = oldAttrs.libraryHaskellDepends or [] ++ (with selfH; [semigroups]); 17 libraryHaskellDepends = (oldAttrs.libraryHaskellDepends or []) ++ (with selfH; [semigroups]);
18 }); 18 });
19 buchhaltung = pkgs.haskell.lib.overrideCabal (superH.buchhaltung.override { inherit (selfH) ListLike; }) (oldAttrs: { 19 buchhaltung = pkgs.haskell.lib.overrideCabal (superH.buchhaltung.override { inherit (selfH) ListLike; }) (oldAttrs: {
20 buildDepends = oldAttrs.buildDepends or [] ++ [ pkgs.makeWrapper ]; 20 buildDepends = (oldAttrs.buildDepends or []) ++ [ pkgs.makeWrapper ];
21 postBuild = '' 21 postBuild = ''
22 ${oldAttrs.postBuild or ""} 22 ${oldAttrs.postBuild or ""}
23 wrapProgram $out/bin/buchhaltung \ 23 wrapProgram $out/bin/buchhaltung \