3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/haskell/shakespeare-text/default.nix

17 lines
583 B
Nix

{ cabal, hspec, HUnit, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "shakespeare-text";
version = "1.0.0.10";
sha256 = "0az3l70syb7ch5fb4i0nlibgh7wcrzqnqmlp1w5h68s796g5rjlb";
buildDepends = [ shakespeare text ];
testDepends = [ hspec HUnit text ];
meta = {
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
description = "Interpolation with quasi-quotation: put variables strings";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})