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

filelock: init at 0.1.1.5

parent 389de55c
No related merge requests found
......@@ -172,6 +172,7 @@ let otherLibraries =
, H.callHackage "dns" "4.1.0"
, H.callHackage "doctest-discover" "0.2.0.0"
, H.callHackage "dom-lt" "0.2.3"
, H.callHackage "filelock" "0.1.1.5"
, H.callHackage "finite-typelits" "0.1.6.0"
, H.callGit
"flat"
......
......@@ -121,6 +121,8 @@ final: prev: with pkgs.haskell.lib; {
dom-lt = final.callPackage (./pkgs/dom-lt.nix) { };
filelock = final.callPackage (./pkgs/filelock.nix) { };
finite-typelits = final.callPackage (./pkgs/finite-typelits.nix) { };
flat = final.callPackage (./pkgs/flat.nix) { };
......
{ mkDerivation, async, base, lib, process, unix }:
mkDerivation {
pname = "filelock";
version = "0.1.1.5";
sha256 = "50ebea81e8443356af26f32221d4594709d94102445931673fcd94a44e244419";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base unix ];
testHaskellDepends = [ async base process ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/takano-akio/filelock";
description = "Portable interface to file locking (flock / LockFileEx)";
license = lib.licenses.publicDomain;
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