forked from mirrors/nixpkgs
Merge pull request #772 from aforemny/haskell-happstack-lite
Add haskell-happstack-lite
This commit is contained in:
commit
464acead37
|
@ -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;
|
||||
};
|
||||
})
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue