16 lines
530 B
Nix
16 lines
530 B
Nix
{ cabal, shakespeare, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shakespeare-text";
|
|
version = "1.0.0.5";
|
|
sha256 = "176yzx43sh0fnxpszn8kximd6i96yf2s374z55kvc1kspf7jk736";
|
|
buildDepends = [ shakespeare 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 ];
|
|
};
|
|
})
|