aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-02-24 04:16:06 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-02-24 04:16:06 +0000
commitc1451ffcbc021e4f25721541538173f24be8f3cc (patch)
tree232463360841f4b4aab46b44ea240dbd9ca0744f /default.nix
parenta3c18a40502ce7a806216425cfde8200df5ce12e (diff)
downloadthermoprint-c1451ffcbc021e4f25721541538173f24be8f3cc.tar
thermoprint-c1451ffcbc021e4f25721541538173f24be8f3cc.tar.gz
thermoprint-c1451ffcbc021e4f25721541538173f24be8f3cc.tar.bz2
thermoprint-c1451ffcbc021e4f25721541538173f24be8f3cc.tar.xz
thermoprint-c1451ffcbc021e4f25721541538173f24be8f3cc.zip
Incorporated: Switched to using location.host
480675cba32803ab74ec064e14ed6b2001c8e071
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}