aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/default.nix b/default.nix
index 9800293..75953c6 100644
--- a/default.nix
+++ b/default.nix
@@ -4,6 +4,7 @@
4 4
5rec { 5rec {
6 haskellPackages = pkgs.haskell.packages."${compilerName}"; 6 haskellPackages = pkgs.haskell.packages."${compilerName}";
7 threepenny-gui = pkgs.haskell.lib.appendPatch haskellPackages.threepenny-gui ./threepenny.patch;
7 thermoprint-spec = haskellPackages.callPackage ./spec/thermoprint-spec.nix {}; 8 thermoprint-spec = haskellPackages.callPackage ./spec/thermoprint-spec.nix {};
8 thermoprint-bbcode = haskellPackages.callPackage ./tp-bbcode/thermoprint-bbcode.nix { 9 thermoprint-bbcode = haskellPackages.callPackage ./tp-bbcode/thermoprint-bbcode.nix {
9 inherit bbcode thermoprint-spec; 10 inherit bbcode thermoprint-spec;
@@ -18,7 +19,7 @@ rec {
18 }; 19 };
19 }; 20 };
20 thermoprint-webgui = haskellPackages.callPackage ./webgui/thermoprint-webgui.nix { 21 thermoprint-webgui = haskellPackages.callPackage ./webgui/thermoprint-webgui.nix {
21 inherit thermoprint-bbcode thermoprint-client; 22 inherit thermoprint-bbcode thermoprint-client threepenny-gui;
22 }; 23 };
23 bbcode = haskellPackages.callPackage ./bbcode/bbcode.nix {}; 24 bbcode = haskellPackages.callPackage ./bbcode/bbcode.nix {};
24} 25}