16 lines
544 B
Nix
16 lines
544 B
Nix
{ cabal, shakespeare, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shakespeare-js";
|
|
version = "1.0.0.5";
|
|
sha256 = "1d4na2q1q798ki5f84gpf89ri26qmrxqrwbw7mmlrfwkj1qw69rs";
|
|
buildDepends = [ shakespeare text ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/shakespearean-templates";
|
|
description = "Stick your haskell variables into javascript/coffeescript at compile time";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|