nixpkgs/pkgs/development/libraries/haskell/shakespeare-js/default.nix
2013-01-30 11:29:57 +01:00

16 lines
555 B
Nix

{ cabal, aeson, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "shakespeare-js";
version = "1.1.2";
sha256 = "0iwajn0d0yngzp10j9qbb2gpq1g7r390yqd7pj5dri35rjc6mr8n";
buildDepends = [ aeson 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 ];
};
})