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

temporary: init at 1.3

parent ab8dad38
No related merge requests found
......@@ -600,6 +600,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "tasty-smallcheck" "0.8.2"
, callHackage "tasty-quickcheck" "0.10.2"
, callHackage "tasty-wai" "0.1.2.0"
, callHackage "temporary" "1.3"
, callHackage "test-framework" "0.8.2.0"
, callHackage "test-framework-hunit" "0.3.0.2"
, callHackage "test-framework-quickcheck2" "0.3.0.5"
......
......@@ -839,6 +839,8 @@ self: with pkgs.haskell.lib; {
tasty-wai = self.callPackage (./pkgs/tasty-wai.nix) { };
temporary = self.callPackage (./pkgs/temporary.nix) { };
test-framework = self.callPackage (./pkgs/test-framework.nix) { };
test-framework-hunit = self.callPackage (./pkgs/test-framework-hunit.nix) { };
......
{ mkDerivation
, base
, base-compat
, directory
, exceptions
, filepath
, lib
, random
, tasty
, tasty-hunit
, transformers
, unix
}:
mkDerivation {
pname = "temporary";
version = "1.3";
sha256 = "8c442993694b5ffca823ce864af95bd2841fb5264ee511c61cf48cc71d879890";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
directory
exceptions
filepath
random
transformers
unix
];
testHaskellDepends = [
base
base-compat
directory
filepath
tasty
tasty-hunit
unix
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/feuerbach/temporary";
description = "Portable temporary file and directory support";
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