From 12e69b998f9f900567555676aac67df65a2361eb Mon Sep 17 00:00:00 2001 From: Gregor Kleen Date: Tue, 11 Sep 2018 10:33:01 +0200 Subject: ... --- users/gkleen@odin.nix | 4 ++-- 1 file 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 @@ packages = pkgs.haskell.packages // { ghc822 = pkgs.haskell.packages.ghc822.extend (selfH: superH: { ListLike = pkgs.haskell.lib.overrideCabal superH.ListLike (oldAttrs: { - libraryHaskellDepends = oldAttrs.libraryHaskellDepends or [] ++ (with selfH; [semigroups]); + libraryHaskellDepends = (oldAttrs.libraryHaskellDepends or []) ++ (with selfH; [semigroups]); }); buchhaltung = pkgs.haskell.lib.overrideCabal (superH.buchhaltung.override { inherit (selfH) ListLike; }) (oldAttrs: { - buildDepends = oldAttrs.buildDepends or [] ++ [ pkgs.makeWrapper ]; + buildDepends = (oldAttrs.buildDepends or []) ++ [ pkgs.makeWrapper ]; postBuild = '' ${oldAttrs.postBuild or ""} wrapProgram $out/bin/buchhaltung \ -- cgit v1.2.3