nixpkgs/pkgs/development/libraries/haskell/shakespeare/default.nix

20 lines
611 B
Nix

{ cabal, hspec, parsec, text }:
cabal.mkDerivation (self: {
pname = "shakespeare";
version = "1.0.3.1";
sha256 = "08w1g19k9v9dvdy45j32kdic8vjhc10ad4g20q5ya0id4cd13qfs";
buildDepends = [ parsec text ];
testDepends = [ hspec parsec text ];
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
self.stdenv.lib.maintainers.simons
];
};
})