summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-08-31 15:06:14 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2017-08-31 15:06:14 +0200
commit795790883652477ca1f9305354d30a76f28d639e (patch)
tree8785262177b276faaf78c1bd3fc7b23db5e157c0
parent38079311831bd64f7c76e891fa2af7ab2ea08cb0 (diff)
downloadnixos-795790883652477ca1f9305354d30a76f28d639e.tar
nixos-795790883652477ca1f9305354d30a76f28d639e.tar.gz
nixos-795790883652477ca1f9305354d30a76f28d639e.tar.bz2
nixos-795790883652477ca1f9305354d30a76f28d639e.tar.xz
nixos-795790883652477ca1f9305354d30a76f28d639e.zip
Don't check anything
-rw-r--r--bragi.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/bragi.nix b/bragi.nix
index 67f8daf5..6ad181d4 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -32,9 +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 { 35 in mapAttrs pkgs.haskell.lib.dontCheck super // {
36 Glob = pkgs.haskell.lib.dontCheck super.Glob;
37
38 trivmix = callPackage ./custom/trivmix {}; 36 trivmix = callPackage ./custom/trivmix {};
39 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;
40 }; 38 };