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

hspec-expectations: init at 0.8.2

parent 0b5ad261
Branches
Tags
No related merge requests found
......@@ -365,6 +365,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hspec-contrib" "0.5.1.1"
, callHackage "hspec-core" "2.10.0.1"
, callHackage "hspec-discover" "2.10.0.1"
, callHackage "hspec-expectations" "0.8.2"
, callHackage "hspec-megaparsec" "2.2.0"
, callHackage "hspec-meta" "2.9.3"
, callHackage "hspec" "2.10.3"
......
......@@ -521,6 +521,8 @@ self: with pkgs.haskell.lib; {
hspec-discover = self.callPackage (./pkgs/hspec-discover.nix) { };
hspec-expectations = self.callPackage (./pkgs/hspec-expectations.nix) { };
hspec-megaparsec = self.callPackage (./pkgs/hspec-megaparsec.nix) { };
hspec-meta = self.callPackage (./pkgs/hspec-meta.nix) { };
......
{ mkDerivation, base, call-stack, HUnit, lib, nanospec }:
mkDerivation {
pname = "hspec-expectations";
version = "0.8.2";
sha256 = "819607ea1faf35ce5be34be61c6f50f3389ea43892d56fb28c57a9f5d54fb4ef";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base call-stack HUnit ];
testHaskellDepends = [ base call-stack HUnit nanospec ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/hspec/hspec-expectations#readme";
description = "Catchy combinators for HUnit";
license = lib.licenses.mit;
broken = false;
}
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