summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bragi.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/bragi.nix b/bragi.nix
index 1be1cfc0..2fda697e 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -28,13 +28,13 @@ in rec {
28 nixpkgs.config.packageOverrides = oldPkgs: 28 nixpkgs.config.packageOverrides = oldPkgs:
29 rec { 29 rec {
30 haskellPackages = oldPkgs.haskellPackages.override { 30 haskellPackages = oldPkgs.haskellPackages.override {
31 overrides = self: super: { 31 overrides = self: super: rec {
32 trivmix = self.callPackage ./custom/trivmix/trivmix.nix {}; 32 trivmix = self.callPackage ./custom/trivmix/trivmix.nix {};
33 inherit 33 inherit
34 (lib.mapAttrs (name: oldPkgs.haskell.lib.dontCheck) super) 34 (lib.mapAttrs (name: oldPkgs.haskell.lib.dontCheck) super)
35 Glob filelock; 35 Glob filelock;
36 inherit 36 inherit
37 (pkgs.lib.callPackageWith (pkgs // self) ./custom/thermoprint { extraPackages = (p: with p; [ persistent-postgresql ]); }) 37 (pkgs.lib.callPackageWith (pkgs // self) ./custom/thermoprint { inherit filelock; extraPackages = (p: with p; [ persistent-postgresql ]); })
38 thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; 38 thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode;
39 }; 39 };
40 }; 40 };