summaryrefslogtreecommitdiffstats
path: root/pkgs/development/libraries/haskell/shakespeare-js/default.nix
blob: 1b8605bb8021bdb3a96bb0ba119710384f65b4a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, shakespeare, text }:

cabal.mkDerivation (self: {
  pname = "shakespeare-js";
  version = "1.0.0.2";
  sha256 = "1qygxihhfl7wzv3djxmldh82pwk8rhnk54zfvwy1pxhxb8y30wkm";
  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 ];
  };
})