nixpkgs/pkgs/development/libraries/haskell/Shellac/Shellac.nix
Peter Simons 96677e9dc3 haskell-Shellac: updated to version 0.9.5.1
svn path=/nixpkgs/trunk/; revision=28358
2011-08-07 22:03:48 +00:00

16 lines
509 B
Nix

{cabal, mtl} :
cabal.mkDerivation (self : {
pname = "Shellac";
version = "0.9.5.1";
sha256 = "19fpbh5ijy9xc3rhl9qwyan8jfnz9nsqvnsjxb7kkb7l2bpz4qfp";
propagatedBuildInputs = [ mtl ];
meta = {
homepage = "http://www.cs.princeton.edu/~rdockins/shellac/home/";
description = "A framework for creating shell envinronments";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.stdenv.lib.platforms.haskellPlatforms;
maintainers = [ self.stdenv.lib.maintainers.simons ];
};
})