aboutsummaryrefslogtreecommitdiff
path: root/bbcode/thermoprint-bbcode.nix
diff options
context:
space:
mode:
Diffstat (limited to 'bbcode/thermoprint-bbcode.nix')
-rw-r--r--bbcode/thermoprint-bbcode.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/bbcode/thermoprint-bbcode.nix b/bbcode/thermoprint-bbcode.nix
index 5521b10..c379053 100644
--- a/bbcode/thermoprint-bbcode.nix
+++ b/bbcode/thermoprint-bbcode.nix
@@ -1,14 +1,16 @@
1{ mkDerivation, attoparsec, base, hspec, QuickCheck 1{ mkDerivation, attoparsec, base, containers, hspec, QuickCheck
2, quickcheck-instances, stdenv, text 2, quickcheck-instances, rosezipper, stdenv, text
3}: 3}:
4mkDerivation { 4mkDerivation {
5 pname = "thermoprint-bbcode"; 5 pname = "thermoprint-bbcode";
6 version = "0.0.0"; 6 version = "0.0.0";
7 src = ./.; 7 src = ./.;
8 libraryHaskellDepends = [ 8 libraryHaskellDepends = [
9 attoparsec base QuickCheck quickcheck-instances text 9 attoparsec base containers rosezipper text
10 ];
11 testHaskellDepends = [
12 attoparsec base hspec QuickCheck quickcheck-instances text
10 ]; 13 ];
11 testHaskellDepends = [ attoparsec base hspec QuickCheck text ];
12 homepage = "http://dirty-haskell.org/tags/thermoprint.html"; 14 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
13 description = "A parser for a subset of bbcode compatible with thermoprint-spec"; 15 description = "A parser for a subset of bbcode compatible with thermoprint-spec";
14 license = stdenv.lib.licenses.publicDomain; 16 license = stdenv.lib.licenses.publicDomain;