1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/happstack/happstack-hamlet.nix
2014-04-29 01:35:46 +02:00

16 lines
524 B
Nix

{ cabal, happstackServer, shakespeare, text }:
cabal.mkDerivation (self: {
pname = "happstack-hamlet";
version = "7.0.4";
sha256 = "1l12gyyqzblb9psk6692r9xw640jxzyxqldfyg2yrzz8y0zi649a";
buildDepends = [ happstackServer shakespeare text ];
meta = {
homepage = "http://www.happstack.com/";
description = "Support for Hamlet HTML templates in Happstack";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})