summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-08-31 15:10:40 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-08-31 15:10:40 +0200
commit6f795dd87ed45290bf07079b2e13f130b9fc2153 (patch)
tree1233eb77310a5a19d83159081738ac9276501332
parent1226a17be75c98ee9a70e289b247d3d883302354 (diff)
downloadnixos-6f795dd87ed45290bf07079b2e13f130b9fc2153.tar
nixos-6f795dd87ed45290bf07079b2e13f130b9fc2153.tar.gz
nixos-6f795dd87ed45290bf07079b2e13f130b9fc2153.tar.bz2
nixos-6f795dd87ed45290bf07079b2e13f130b9fc2153.tar.xz
nixos-6f795dd87ed45290bf07079b2e13f130b9fc2153.zip
-rw-r--r--bragi.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/bragi.nix b/bragi.nix
index ea661c87..20d865e2 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -32,7 +32,7 @@ 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: pkgs.haskell.lib.dontCheck) 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 };