From 178a5067af5e1b0526388903b9601837f55e850a Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Wed, 26 Apr 2017 22:41:46 +0200 Subject: [PATCH] hledger(-web): move to all-packages with static build Since they are executables they should be at top-level. We build statically to shorten invocation time (at the moment haskell packages have the problem of too large RPATHs). --- pkgs/top-level/all-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 779db161d14..16b52fa6f67 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14314,6 +14314,9 @@ with pkgs; hipchat = callPackage ../applications/networking/instant-messengers/hipchat { }; + hledger = haskell.lib.justStaticExecutables haskellPackages.hledger; + hledger-web = haskell.lib.justStaticExecutables haskellPackages.hledger-web; + homebank = callPackage ../applications/office/homebank { gtk = gtk3; };