Skip to content
Snippets Groups Projects
Commit e8319f54 authored by Daniel Firth's avatar Daniel Firth
Browse files

hspec-contrib: init at 0.5.1.1

parent 281583c9
No related merge requests found
...@@ -201,6 +201,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -201,6 +201,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(None Text) (None Text)
, callHackage "hslua-aeson" "2.2.1" , callHackage "hslua-aeson" "2.2.1"
, callHackage "hspec" "2.10.3" , callHackage "hspec" "2.10.3"
, callHackage "hspec-contrib" "0.5.1.1"
, callHackage "hspec-core" "2.10.0.1" , callHackage "hspec-core" "2.10.0.1"
, callHackage "hspec-discover" "2.10.0.1" , callHackage "hspec-discover" "2.10.0.1"
, callHackage "hspec-meta" "2.9.3" , callHackage "hspec-meta" "2.9.3"
......
...@@ -213,6 +213,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -213,6 +213,8 @@ final: prev: with pkgs.haskell.lib; {
hspec = prev.callPackage (./pkgs/hspec.nix) { }; hspec = prev.callPackage (./pkgs/hspec.nix) { };
hspec-contrib = prev.callPackage (./pkgs/hspec-contrib.nix) { };
hspec-core = prev.callPackage (./pkgs/hspec-core.nix) { }; hspec-core = prev.callPackage (./pkgs/hspec-core.nix) { };
hspec-discover = prev.callPackage (./pkgs/hspec-discover.nix) { }; hspec-discover = prev.callPackage (./pkgs/hspec-discover.nix) { };
......
{ mkDerivation, base, hspec, hspec-core, hspec-discover, HUnit, lib
, QuickCheck
}:
mkDerivation {
pname = "hspec-contrib";
version = "0.5.1.1";
sha256 = "fde656a694dafbb8e147c1ca41eff5eef6a273f79fbae1bc0722e128852dcbdb";
libraryHaskellDepends = [ base hspec-core HUnit ];
testHaskellDepends = [ base hspec hspec-core HUnit QuickCheck ];
testToolDepends = [ hspec-discover ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "http://hspec.github.io/";
description = "Contributed functionality for Hspec";
license = lib.licenses.mit;
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment