diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2017-08-31 15:25:08 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2017-08-31 15:25:08 +0200 |
commit | 77ea266f9803471a34508a4bd1bfe28257ac6a77 (patch) | |
tree | d92134d3fad6a007db9eaa86c8f2781ddb39ea93 | |
parent | cdca3511bfb11fbe5d58007a45c165d25c6fbf7d (diff) | |
download | nixos-77ea266f9803471a34508a4bd1bfe28257ac6a77.tar nixos-77ea266f9803471a34508a4bd1bfe28257ac6a77.tar.gz nixos-77ea266f9803471a34508a4bd1bfe28257ac6a77.tar.bz2 nixos-77ea266f9803471a34508a4bd1bfe28257ac6a77.tar.xz nixos-77ea266f9803471a34508a4bd1bfe28257ac6a77.zip |
…
-rw-r--r-- | bragi.nix | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -38,7 +38,11 @@ in rec { | |||
38 | (lib.mapAttrs (name: pkgs.haskell.lib.dontCheck) super) | 38 | (lib.mapAttrs (name: pkgs.haskell.lib.dontCheck) super) |
39 | Glob filelock; | 39 | Glob filelock; |
40 | inherit | 40 | inherit |
41 | (pkgs.callPackage ./custom/thermoprint { extraPackages = (p: with p; [ persistent-postgresql ]); }) | 41 | ((import ./custom/thermoprint) { |
42 | inherit (pkgs) stdenv; | ||
43 | haskellPackages = self; | ||
44 | extraPackages = (p: with p; [ persistent-postgresql ]); | ||
45 | }) | ||
42 | thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; | 46 | thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; |
43 | }; | 47 | }; |
44 | } | 48 | } |