mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Add hspec-expectations-lens haskell package
This commit is contained in:
parent
793328e1ee
commit
1f42fa7cc0
@ -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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user