aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/default.nix b/default.nix
index 59fb721..3bcf128 100644
--- a/default.nix
+++ b/default.nix
@@ -6,5 +6,11 @@ rec {
6 thermoprint-bbcode = pkgs.haskellPackages.callPackage ./tp-bbcode/thermoprint-bbcode.nix { 6 thermoprint-bbcode = pkgs.haskellPackages.callPackage ./tp-bbcode/thermoprint-bbcode.nix {
7 inherit bbcode thermoprint-spec; 7 inherit bbcode thermoprint-spec;
8 }; 8 };
9 thermoprint-server = pkgs.callPackage ./server/wrapped.nix {
10 inherit (pkgs.haskellPackages) ghcWithPackages;
11 thermoprint-server = pkgs.haskellPackages.callPackage ./server/thermoprint-server.nix {
12 inherit thermoprint-spec;
13 };
14 };
9 bbcode = pkgs.haskellPackages.callPackage ./bbcode/bbcode.nix {}; 15 bbcode = pkgs.haskellPackages.callPackage ./bbcode/bbcode.nix {};
10} 16}