1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-23 18:37:02 +00:00
nixpkgs/pkgs/development/libraries/haskell/happstack/happstack-hamlet.nix

16 lines
524 B
Nix
Raw Normal View History

{ 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 ];
};
})