b041d3e49b
- blaze-builder-conduit: updated to version 0.4.0.1 - enumerator: updated to version 0.4.19 - persistent-sqlite: updated to version 0.9.0.1 - persistent-template: updated to version 0.9.0.1 - persistent: updated to version 0.9.0.1 - pool-conduit: updated to version 0.1.0.1 - semigroups: updated to version 0.8.2 - shakespeare-css: updated to version 1.0.1.1 - shakespeare-i18n: updated to version 1.0.0.1 - shakespeare-js: updated to version 1.0.0.1 - shakespeare-text: updated to version 1.0.0.1 - shakespeare: updated to version 1.0.0.1 - void: updated to version 0.5.5.1 - wai-app-static: updated to version 1.2.0.1 - wai: updated to version 1.2.0.1 - warp: updated to version 1.2.0.1 - yesod-core: updated to version 1.0.0.2 - yesod: updated to version 1.0.0.2 - zlib-conduit: updated to version 0.4.0.1 svn path=/nixpkgs/trunk/; revision=33683
16 lines
544 B
Nix
16 lines
544 B
Nix
{ cabal, shakespeare, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "shakespeare-js";
|
|
version = "1.0.0.1";
|
|
sha256 = "13l1hsc6b87lbz10xhihvmzf1922mwmrbinr4rhkrn48hlxf2fii";
|
|
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 ];
|
|
};
|
|
})
|