diff options
| -rw-r--r-- | users/gkleen@odin.nix | 4 |
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 \ |
