diff options
Diffstat (limited to 'bragi.nix')
-rw-r--r-- | bragi.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,10 +32,10 @@ in rec { | |||
32 | pkgs.haskellPackages.override { | 32 | pkgs.haskellPackages.override { |
33 | overrides = self: super: let | 33 | overrides = self: super: let |
34 | callPackage = pkgs.lib.callPackageWith ( pkgs // self ); | 34 | callPackage = pkgs.lib.callPackageWith ( pkgs // self ); |
35 | in (lib.mapAttrs (name: pkgs.haskell.lib.dontCheck) super) // { | 35 | in lib.mapAttrs (name: pkg: pkgs.haskell.lib.dontCheck pkg) (super // { |
36 | trivmix = callPackage ./custom/trivmix {}; | 36 | trivmix = callPackage ./custom/trivmix {}; |
37 | inherit (pkgs.callPackage ./custom/thermoprint { extraPackages = (p: with p; [ persistent-postgresql ]); }) thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; | 37 | inherit (pkgs.callPackage ./custom/thermoprint { extraPackages = (p: with p; [ persistent-postgresql ]); }) thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; |
38 | }; | 38 | }); |
39 | } | 39 | } |
40 | ); | 40 | ); |
41 | 41 | ||