nixpkgs-suyu/pkgs/development/libraries/haskell/shakespeare/default.nix
2013-09-08 22:56:28 +02:00

18 lines
666 B
Nix

{ cabal, hspec, parsec, systemFileio, systemFilepath, text, time }:
cabal.mkDerivation (self: {
pname = "shakespeare";
version = "1.2.0";
sha256 = "0lzzdkry3sm5i5hhdygsikpnaps66k1sfdxi2mp0ly5aqi1n1blz";
buildDepends = [ parsec systemFileio systemFilepath text time ];
testDepends = [
hspec parsec systemFileio systemFilepath text time
];
meta = {
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "A toolkit for making compile-time interpolated templates";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})