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

hfsevents: 0.1.6

parent 666d17fa
1 merge request!137hfsevents: 0.1.6
......@@ -8,11 +8,18 @@ final: prev: {
alsa-mixer = null;
hfsevents = prev.callPackage ../pkgs/hfsevents.nix {
Cocoa = pkgs.darwin.apple_sdk.frameworks.Cocoa;
CoreServices = pkgs.darwin.apple_sdk.frameworks.CoreServices;
};
iwlib = null;
libsystemd-journal = null;
sdl2-mixer = null;
hinotify = final.hfsevents;
}
......@@ -8,11 +8,18 @@ final: prev: {
alsa-mixer = null;
hfsevents = prev.callPackage ../pkgs/hfsevents.nix {
Cocoa = pkgs.darwin.apple_sdk.frameworks.Cocoa;
CoreServices = pkgs.darwin.apple_sdk.frameworks.CoreServices;
};
iwlib = null;
libsystemd-journal = null;
sdl2-mixer = null;
hinotify = final.hfsevents;
}
......@@ -4,4 +4,6 @@ with haskellLib;
final: prev: {
hfsevents = null;
}
......@@ -293,6 +293,7 @@ let packages =
, hedgehog-quickcheck = H.callHackage "hedgehog-quickcheck" "0.1.1"
, heredoc = H.callHackage "heredoc" "0.2.0.0"
, hex-text = H.callHackage "hex-text" "0.1.0.9"
, hfsevents = H.callHackage "hfsevents" "0.1.6"
, hoauth2 = H.callHackage "hoauth2" "2.10.0"
, hosc = H.callHackage "hosc" "0.20"
, hslogger = H.callHackage "hslogger" "1.3.1.0"
......
......@@ -930,6 +930,10 @@
, mapValue =
"4d1d4688e696f3619000aaff162a8926c5a0e7b07657ab46a214204c86c6101b"
}
, { mapKey = "hfsevents"
, mapValue =
"c868c24f17134ac892de9437ef15dba6584b33b02d2b4a8b0f4df69c54654d04"
}
, { mapKey = "hoauth2"
, mapValue =
"b4591c77e2e78d99a72fa2279aef1d6f0e12bfe0c4bba22fe19c31dd00af2257"
......
......@@ -467,6 +467,8 @@ final: prev: with pkgs.haskell.lib; {
hex-text = final.callPackage (./pkgs/hex-text.nix) { };
hfsevents = final.callPackage (./pkgs/hfsevents.nix) { };
hoauth2 = final.callPackage (./pkgs/hoauth2.nix) { };
hosc = final.callPackage (./pkgs/hosc.nix) { };
......
{ mkDerivation, Cocoa, CoreServices, base, bytestring, cereal, lib
, mtl, text
}:
mkDerivation {
pname = "hfsevents";
version = "0.1.6";
sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring cereal mtl text ];
librarySystemDepends = [ Cocoa ];
libraryToolDepends = [ CoreServices ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/luite/hfsevents";
description = "File/folder watching for OS X";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
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