diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-14 22:14:49 +0000 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2016-01-14 22:14:49 +0000 |
commit | 48390f18b6b5690f015291af83fafefd10c70f57 (patch) | |
tree | 775f83741d08c94b27e22bda80b52a0a64d24b34 /bbcode | |
parent | 20105cc9a88d25a55eadf4263fc426a373ee0429 (diff) | |
download | thermoprint-48390f18b6b5690f015291af83fafefd10c70f57.tar thermoprint-48390f18b6b5690f015291af83fafefd10c70f57.tar.gz thermoprint-48390f18b6b5690f015291af83fafefd10c70f57.tar.bz2 thermoprint-48390f18b6b5690f015291af83fafefd10c70f57.tar.xz thermoprint-48390f18b6b5690f015291af83fafefd10c70f57.zip |
bbcode is orthogonal to thermoprint
Diffstat (limited to 'bbcode')
-rw-r--r-- | bbcode/bbcode.cabal (renamed from bbcode/thermoprint-bbcode.cabal) | 6 | ||||
-rw-r--r-- | bbcode/bbcode.nix (renamed from bbcode/thermoprint-bbcode.nix) | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/bbcode/thermoprint-bbcode.cabal b/bbcode/bbcode.cabal index f25ffdf..d2f4932 100644 --- a/bbcode/thermoprint-bbcode.cabal +++ b/bbcode/bbcode.cabal | |||
@@ -1,9 +1,9 @@ | |||
1 | -- Initial thermoprint-bbcode.cabal generated by cabal init. For further | 1 | -- Initial thermoprint-bbcode.cabal generated by cabal init. For further |
2 | -- documentation, see http://haskell.org/cabal/users-guide/ | 2 | -- documentation, see http://haskell.org/cabal/users-guide/ |
3 | 3 | ||
4 | name: thermoprint-bbcode | 4 | name: bbcode |
5 | version: 0.0.0 | 5 | version: 0.0.0 |
6 | synopsis: A parser for a subset of bbcode compatible with thermoprint-spec | 6 | synopsis: A parser for bbcode |
7 | -- description: | 7 | -- description: |
8 | homepage: http://dirty-haskell.org/tags/thermoprint.html | 8 | homepage: http://dirty-haskell.org/tags/thermoprint.html |
9 | license: PublicDomain | 9 | license: PublicDomain |
@@ -36,7 +36,7 @@ Test-Suite tests | |||
36 | main-is: Spec.hs | 36 | main-is: Spec.hs |
37 | ghc-options: -threaded -with-rtsopts=-N | 37 | ghc-options: -threaded -with-rtsopts=-N |
38 | build-depends: base >=4.8.1 && <5 | 38 | build-depends: base >=4.8.1 && <5 |
39 | , thermoprint-bbcode -any | 39 | , bbcode -any |
40 | , hspec >=2.2.1 && <3 | 40 | , hspec >=2.2.1 && <3 |
41 | , QuickCheck >=2.8.1 && <3 | 41 | , QuickCheck >=2.8.1 && <3 |
42 | , quickcheck-instances >=0.3.11 && <1 | 42 | , quickcheck-instances >=0.3.11 && <1 |
diff --git a/bbcode/thermoprint-bbcode.nix b/bbcode/bbcode.nix index 896bb04..82ba2f4 100644 --- a/bbcode/thermoprint-bbcode.nix +++ b/bbcode/bbcode.nix | |||
@@ -2,7 +2,7 @@ | |||
2 | , hspec, QuickCheck, quickcheck-instances, rosezipper, stdenv, text | 2 | , hspec, QuickCheck, quickcheck-instances, rosezipper, stdenv, text |
3 | }: | 3 | }: |
4 | mkDerivation { | 4 | mkDerivation { |
5 | pname = "thermoprint-bbcode"; | 5 | pname = "bbcode"; |
6 | version = "0.0.0"; | 6 | version = "0.0.0"; |
7 | src = ./.; | 7 | src = ./.; |
8 | libraryHaskellDepends = [ | 8 | libraryHaskellDepends = [ |
@@ -12,6 +12,6 @@ mkDerivation { | |||
12 | attoparsec base hspec QuickCheck quickcheck-instances text | 12 | attoparsec base hspec QuickCheck quickcheck-instances text |
13 | ]; | 13 | ]; |
14 | homepage = "http://dirty-haskell.org/tags/thermoprint.html"; | 14 | homepage = "http://dirty-haskell.org/tags/thermoprint.html"; |
15 | description = "A parser for a subset of bbcode compatible with thermoprint-spec"; | 15 | description = "A parser for bbcode"; |
16 | license = stdenv.lib.licenses.publicDomain; | 16 | license = stdenv.lib.licenses.publicDomain; |
17 | } | 17 | } |