aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-01-18 12:09:36 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-01-18 12:09:36 +0000
commit57c56564d15cd5c83a4f1d1bab5490e6b75e8656 (patch)
tree55ea741665155b46b9e599b149dee3323fe479c0 /default.nix
parent9435083465a487553b21c599c1340aa5e5ed8a1c (diff)
downloadthermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.gz
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.bz2
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.tar.xz
thermoprint-57c56564d15cd5c83a4f1d1bab5490e6b75e8656.zip
Moved Printout.BBCode to own module
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/default.nix b/default.nix
index 867ac5b..59fb721 100644
--- a/default.nix
+++ b/default.nix
@@ -2,8 +2,9 @@
2}: 2}:
3 3
4rec { 4rec {
5 thermoprint-spec = pkgs.haskellPackages.callPackage ./spec/thermoprint-spec.nix { 5 thermoprint-spec = pkgs.haskellPackages.callPackage ./spec/thermoprint-spec.nix {};
6 inherit bbcode; 6 thermoprint-bbcode = pkgs.haskellPackages.callPackage ./tp-bbcode/thermoprint-bbcode.nix {
7 inherit bbcode thermoprint-spec;
7 }; 8 };
8 bbcode = pkgs.haskellPackages.callPackage ./bbcode/bbcode.nix {}; 9 bbcode = pkgs.haskellPackages.callPackage ./bbcode/bbcode.nix {};
9} 10}