summaryrefslogtreecommitdiff
path: root/bragi.nix
diff options
context:
space:
mode:
Diffstat (limited to 'bragi.nix')
-rw-r--r--bragi.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/bragi.nix b/bragi.nix
index db70db98..9bb4d702 100644
--- a/bragi.nix
+++ b/bragi.nix
@@ -38,7 +38,11 @@ in rec {
38 (lib.mapAttrs (name: pkgs.haskell.lib.dontCheck) super) 38 (lib.mapAttrs (name: pkgs.haskell.lib.dontCheck) super)
39 Glob filelock; 39 Glob filelock;
40 inherit 40 inherit
41 (pkgs.callPackage ./custom/thermoprint { extraPackages = (p: with p; [ persistent-postgresql ]); }) 41 ((import ./custom/thermoprint) {
42 inherit (pkgs) stdenv;
43 haskellPackages = self;
44 extraPackages = (p: with p; [ persistent-postgresql ]);
45 })
42 thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode; 46 thermoprint-spec thermoprint-bbcode thermoprint-client thermoprint-server thermoprint-webgui tprint bbcode;
43 }; 47 };
44 } 48 }