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

16 lines
514 B
Nix
Raw Normal View History

{ cabal, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "shakespeare-text";
version = "0.11";
sha256 = "02h8vi28kzvv44hy1ix9jc01x4jx302cp71bdj8blsjxzqyr6aq8";
buildDepends = [ shakespeare text ];
meta = {
homepage = "http://www.yesodweb.com/book/templates";
description = "Interpolation with quasi-quotation: put variables strings";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})