15 lines
458 B
Nix
15 lines
458 B
Nix
|
{ cabal, shakespeare, text }:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "shakespeare-text";
|
||
|
version = "0.10.1";
|
||
|
sha256 = "1p05nsfmlibhpik6dd40m0djk5yckl4i2ylx9lwyi68lx0izbm5j";
|
||
|
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;
|
||
|
};
|
||
|
})
|