diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2017-09-03 21:34:21 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2017-09-03 21:34:21 +0200 |
commit | 739fbfc609b74754186ef29bf041e792f1c72148 (patch) | |
tree | c8a7d2949261d202f780659385f7861d055e6e3e | |
parent | 0b6155a5734f95c3982430f3500e0c6e4ae274e2 (diff) | |
download | nixos-739fbfc609b74754186ef29bf041e792f1c72148.tar nixos-739fbfc609b74754186ef29bf041e792f1c72148.tar.gz nixos-739fbfc609b74754186ef29bf041e792f1c72148.tar.bz2 nixos-739fbfc609b74754186ef29bf041e792f1c72148.tar.xz nixos-739fbfc609b74754186ef29bf041e792f1c72148.zip |
…
-rw-r--r-- | bragi.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,11 +28,11 @@ in rec { | |||
28 | 28 | ||
29 | nixpkgs.config.packageOverrides = oldPkgs: | 29 | nixpkgs.config.packageOverrides = oldPkgs: |
30 | rec { | 30 | rec { |
31 | haskellPackages = oldPkgs.haskellPackages { | 31 | haskellPackages = oldPkgs.haskellPackages.override { |
32 | overrides = self: super: { | 32 | overrides = self: super: { |
33 | trivmix = self.callPackage ./custom/trivmix/trivmix.nix {}; | 33 | trivmix = self.callPackage ./custom/trivmix/trivmix.nix {}; |
34 | inherit | 34 | inherit |
35 | (lib.mapAttrs (name: drv: oldPkgs.haskell.lib.dontCheck drv) super) | 35 | (lib.mapAttrs (name: oldPkgs.haskell.lib.dontCheck) super) |
36 | Glob filelock; | 36 | Glob filelock; |
37 | inherit | 37 | inherit |
38 | (pkgs.lib.callPackageWith (pkgs // self) ./custom/thermoprint { extraPackages = (p: with p; [ persistent-postgresql ]); }) | 38 | (pkgs.lib.callPackageWith (pkgs // self) ./custom/thermoprint { extraPackages = (p: with p; [ persistent-postgresql ]); }) |