diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2017-08-31 15:16:52 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2017-08-31 15:16:52 +0200 |
commit | 72c8872f4ea1d029f35fbb34deb75c1be350f796 (patch) | |
tree | 512fb92b853db145e84a12221643baa7f89ec1ea | |
parent | 7c1faa23fac889cfad937faaf75517a859ba5ca8 (diff) | |
download | nixos-72c8872f4ea1d029f35fbb34deb75c1be350f796.tar nixos-72c8872f4ea1d029f35fbb34deb75c1be350f796.tar.gz nixos-72c8872f4ea1d029f35fbb34deb75c1be350f796.tar.bz2 nixos-72c8872f4ea1d029f35fbb34deb75c1be350f796.tar.xz nixos-72c8872f4ea1d029f35fbb34deb75c1be350f796.zip |
Back to test blacklist
-rw-r--r-- | bragi.nix | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -32,10 +32,15 @@ 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: pkg: pkgs.haskell.lib.dontCheck pkg) (super // { | 35 | in { |
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 |
38 | }); | 38 | (lib.mapAttrs (name: pkgs.haskell.lib.dontCheck) super) |
39 | Glob; | ||
40 | inherit | ||
41 | (pkgs.callPackage ./custom/thermoprint { extraPackages = (p: with p; [ persistent-postgresql ]); }) | ||
42 | thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; | ||
43 | }; | ||
39 | } | 44 | } |
40 | ); | 45 | ); |
41 | 46 | ||