mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
haskell-hspec-expectations: add version 0.3.2
This commit is contained in:
parent
a1d4a00dcd
commit
8a134745de
3 changed files with 20 additions and 1 deletions
|
@ -0,0 +1,17 @@
|
|||
{ cabal, hspec, HUnit, markdownUnlit, silently }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hspec-expectations";
|
||||
version = "0.3.2";
|
||||
sha256 = "0962wlngqck0wc7mcby9bzci1s8d9a91vsm39rnab5wifhc2c6xi";
|
||||
buildDepends = [ HUnit ];
|
||||
testDepends = [ hspec HUnit markdownUnlit silently ];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/sol/hspec-expectations#readme";
|
||||
description = "Catchy combinators for HUnit";
|
||||
license = self.stdenv.lib.licenses.mit;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
||||
};
|
||||
})
|
|
@ -1109,7 +1109,9 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
hspec = callPackage ../development/libraries/haskell/hspec {};
|
||||
|
||||
hspecExpectations = callPackage ../development/libraries/haskell/hspec-expectations {};
|
||||
hspecExpectations_0_3_0_3 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.0.3.nix {};
|
||||
hspecExpectations_0_3_2 = callPackage ../development/libraries/haskell/hspec-expectations/0.3.2.nix {};
|
||||
hspecExpectations = self.hspecExpectations_0_3_0_3;
|
||||
|
||||
hspecMeta = callPackage ../development/libraries/haskell/hspec-meta {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue