generate reserve using cabal2nix

This commit is contained in:
Hoang Xuan Phu 2014-08-21 18:04:25 +08:00
parent af14075f4d
commit 8fb6a25c6b
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ cabal, baseCompat, hspec, httpConduit, httpKit, httpTypes
, network, QuickCheck, warp
}:
cabal.mkDerivation (self: {
pname = "reserve";
version = "0.0.0";
sha256 = "06rj1dh8lsfbmfkslyhqc031abrz2qw780i8w2c5pc146938pdi3";
isLibrary = false;
isExecutable = true;
buildDepends = [ baseCompat httpKit httpTypes network ];
testDepends = [
baseCompat hspec httpConduit httpKit httpTypes network QuickCheck
warp
];
meta = {
description = "Reserve reloads web applications";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2006,6 +2006,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
ranges = callPackage ../development/libraries/haskell/ranges {};
reserve = callPackage ../development/libraries/haskell/reserve {};
rvar = callPackage ../development/libraries/haskell/rvar {};
reactiveBanana = callPackage ../development/libraries/haskell/reactive-banana {};