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

atomic-write: init at 0.2.0.7

parent b7aa000c
No related merge requests found
......@@ -86,6 +86,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "assoc" "1.0.2"
, callHackage "async" "2.2.4"
, callHackage "atomic-primops" "0.8.4"
, callHackage "atomic-write" "0.2.0.7"
, callHackage "attoparsec-binary" "0.2"
, callHackage "attoparsec-iso8601" "1.1.0.0"
, callHackage "attoparsec" "0.14.4"
......
......@@ -65,6 +65,8 @@ self: with pkgs.haskell.lib; {
atomic-primops = self.callPackage (./pkgs/atomic-primops.nix) { };
atomic-write = self.callPackage (./pkgs/atomic-write.nix) { };
attoparsec = self.callPackage (./pkgs/attoparsec.nix) { };
attoparsec-binary = self.callPackage (./pkgs/attoparsec-binary.nix) { };
......
{ mkDerivation
, base
, bytestring
, directory
, filepath
, hspec
, lib
, temporary
, text
, unix-compat
}:
mkDerivation {
pname = "atomic-write";
version = "0.2.0.7";
sha256 = "b5f5c77884bc0332306fab89acf1c8a8582d76eabaa303c91b1c4072621c960d";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
directory
filepath
temporary
text
unix-compat
];
testHaskellDepends = [
base
bytestring
filepath
hspec
temporary
text
unix-compat
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/stackbuilders/atomic-write";
description = "Atomically write to a file";
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