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

mockery: init at 0.3.5

parent f7f13a7e
Branches
Tags
No related merge requests found
...@@ -322,6 +322,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -322,6 +322,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "lucid" "2.11.1" , callHackage "lucid" "2.11.1"
, callHackage "net-mqtt" "0.8.2.2" , callHackage "net-mqtt" "0.8.2.2"
, callHackage "memory" "0.18.0" , callHackage "memory" "0.18.0"
, callHackage "mockery" "0.3.5"
, callHackage "microstache" "1.0.2.2" , callHackage "microstache" "1.0.2.2"
, callHackage "monad-control" "1.0.3.1" , callHackage "monad-control" "1.0.3.1"
, callHackage "monad-time" "0.4.0.0" , callHackage "monad-time" "0.4.0.0"
......
...@@ -375,6 +375,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -375,6 +375,8 @@ final: prev: with pkgs.haskell.lib; {
microstache = prev.callPackage (./pkgs/microstache.nix) { }; microstache = prev.callPackage (./pkgs/microstache.nix) { };
mockery = prev.callPackage (./pkgs/mockery.nix) { };
monad-control = prev.callPackage (./pkgs/monad-control.nix) { }; monad-control = prev.callPackage (./pkgs/monad-control.nix) { };
monad-par = prev.callPackage (./pkgs/monad-par.nix) { }; monad-par = prev.callPackage (./pkgs/monad-par.nix) { };
......
{ mkDerivation
, base
, base-compat
, bytestring
, directory
, filepath
, hspec
, lib
, logging-facade
, temporary
}:
mkDerivation {
pname = "mockery";
version = "0.3.5";
sha256 = "b7a1edacd3d32dc7f0e28c67877209d3ca3551d1da186f6445f825f3477dd727";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
base-compat
bytestring
directory
filepath
logging-facade
temporary
];
testHaskellDepends = [
base
base-compat
bytestring
directory
filepath
hspec
logging-facade
temporary
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Support functions for automated testing";
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