nixpkgs/pkgs/development/libraries/haskell/pretty-show/default.nix
Andres Löh 9d2ff1e084 Added pretty-show Haskell library.
svn path=/nixpkgs/trunk/; revision=25504
2011-01-11 10:43:13 +00:00

15 lines
374 B
Nix

{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];
};
})