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.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/bbcode/thermoprint-bbcode.nix b/bbcode/thermoprint-bbcode.nix
deleted file mode 100644
index 896bb04..0000000
--- a/bbcode/thermoprint-bbcode.nix
+++ /dev/null
@@ -1,17 +0,0 @@
1{ mkDerivation, attoparsec, base, case-insensitive, containers
2, hspec, QuickCheck, quickcheck-instances, rosezipper, stdenv, text
3}:
4mkDerivation {
5 pname = "thermoprint-bbcode";
6 version = "0.0.0";
7 src = ./.;
8 libraryHaskellDepends = [
9 attoparsec base case-insensitive containers rosezipper text
10 ];
11 testHaskellDepends = [
12 attoparsec base hspec QuickCheck quickcheck-instances text
13 ];
14 homepage = "http://dirty-haskell.org/tags/thermoprint.html";
15 description = "A parser for a subset of bbcode compatible with thermoprint-spec";
16 license = stdenv.lib.licenses.publicDomain;
17}