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

silently: init at 1.2.5.3

parent a7ab909e
No related merge requests found
......@@ -590,6 +590,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "shakespeare" "2.0.30"
, callHackage "shake" "0.19.6"
, callHackage "shelly" "1.10.0"
, callHackage "silently" "1.2.5.3"
, callHackage "simple-sendfile" "0.2.30"
, callHackage "singleton-bool" "0.1.6"
, callHackage "singletons" "3.0.2"
......
......@@ -843,6 +843,8 @@ self: with pkgs.haskell.lib; {
shelly = self.callPackage (./pkgs/shelly.nix) { };
silently = self.callPackage (./pkgs/silently.nix) { };
simple-sendfile = self.callPackage (./pkgs/simple-sendfile.nix) { };
singleton-bool = self.callPackage (./pkgs/singleton-bool.nix) { };
......
{ mkDerivation
, base
, deepseq
, directory
, lib
, nanospec
, temporary
}:
mkDerivation {
pname = "silently";
version = "1.2.5.3";
sha256 = "ba9dafafd29438a830afd158c3b83ce157d50e984352ff3ddf60a74c22f36372";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base deepseq directory ];
testHaskellDepends = [ base deepseq directory nanospec temporary ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/hspec/silently";
description = "Prevent or capture writing to stdout and other handles";
license = lib.licenses.bsd3;
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