Add hspec-expectations-lens haskell package

This commit is contained in:
Shea Levy 2014-02-25 10:49:15 -05:00
parent 793328e1ee
commit 1f42fa7cc0
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{ cabal, hspec, hspecExpectations, HUnit, lens, silently }:
cabal.mkDerivation (self: {
pname = "hspec-expectations-lens";
version = "0.3.0.0";
sha256 = "1v6j4z3gv41jlhbi8ngx7h6d78l1fazvd3bw3c67zsnlgqrvl1x5";
buildDepends = [ hspec hspecExpectations HUnit lens ];
testDepends = [ hspec lens silently ];
meta = {
homepage = "http://supki.github.io/hspec-expectations-lens/";
description = "Hspec expectations for the lens stuff";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -1430,6 +1430,10 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
hspecExpectations = callPackage ../development/libraries/haskell/hspec-expectations {};
hspecExpectationsLens = callPackage ../development/libraries/haskell/hspec-expectations-lens {
lens = self.lens_4_0_4;
};
hspecMeta = callPackage ../development/libraries/haskell/hspec-meta {};
hstatsd = callPackage ../development/libraries/haskell/hstatsd {};