nixpkgs/pkgs/development/libraries/haskell/shakespeare-js/default.nix

19 lines
581 B
Nix
Raw Normal View History

{ cabal, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "shakespeare-js";
version = "0.10.1";
sha256 = "0j9jzrnvarwkab9zynz8k60ilgj5kyqdm56lricpii27qlkqnmf3";
buildDepends = [ shakespeare text ];
meta = {
homepage = "http://www.yesodweb.com/book/templates";
description = "Stick your haskell variables into javascript/coffeescript at compile time";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})