3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #772 from aforemny/haskell-happstack-lite

Add haskell-happstack-lite
This commit is contained in:
Peter Simons 2013-07-21 06:40:43 -07:00
commit 464acead37
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, happstackServer, mtl, text }:
cabal.mkDerivation (self: {
pname = "happstack-lite";
version = "7.3.1";
sha256 = "0y8d0xv26szfjmkfqzak19zqjgv0w6rkc1rzrd2jkvsbchnwacjy";
buildDepends = [ happstackServer mtl text ];
meta = {
homepage = "http://www.happstack.com/";
description = "Happstack minus the useless stuff";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1083,6 +1083,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
happstackHamlet = callPackage ../development/libraries/haskell/happstack/happstack-hamlet.nix {};
happstackLite = callPackage ../development/libraries/haskell/happstack/happstack-lite.nix {};
hashable_1_1_2_5 = callPackage ../development/libraries/haskell/hashable/1.1.2.5.nix {};
hashable_1_2_0_10 = callPackage ../development/libraries/haskell/hashable/1.2.0.10.nix {};
hashable = self.hashable_1_2_0_10;