Added pretty-show Haskell library.

svn path=/nixpkgs/trunk/; revision=25504
This commit is contained in:
Andres Löh
2011-01-11 10:43:13 +00:00
parent bf380c62f7
commit 9d2ff1e084
2 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
{cabal, haskellLexer}:
cabal.mkDerivation (self : {
pname = "pretty-show";
version = "1.1.1";
sha256 = "0w6r68l1452vh9aqnlh4066y62h8ylh45gbsl5l558wjgchlna5k";
propagatedBuildInputs = [haskellLexer];
meta = {
description = "Tools for working with derived Show instances";
license = "BSD";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})