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

Merge branch 'hfsevents' into 'master'

hfsevents: 0.1.6

See merge request !28
parents 3b086f21 711cfc51
Branches
Tags
1 merge request!28hfsevents: 0.1.6
Pipeline #5056 passed with stages
in 10 minutes and 21 seconds
...@@ -8,11 +8,18 @@ final: prev: { ...@@ -8,11 +8,18 @@ final: prev: {
alsa-mixer = null; 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; iwlib = null;
libsystemd-journal = null; libsystemd-journal = null;
sdl2-mixer = null; sdl2-mixer = null;
hinotify = final.hfsevents;
} }
...@@ -8,11 +8,18 @@ final: prev: { ...@@ -8,11 +8,18 @@ final: prev: {
alsa-mixer = null; 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; iwlib = null;
libsystemd-journal = null; libsystemd-journal = null;
sdl2-mixer = null; sdl2-mixer = null;
hinotify = final.hfsevents;
} }
...@@ -4,4 +4,6 @@ with haskellLib; ...@@ -4,4 +4,6 @@ with haskellLib;
final: prev: { final: prev: {
hfsevents = null;
} }
...@@ -108,6 +108,7 @@ let packages = ...@@ -108,6 +108,7 @@ let packages =
"62ef191df2c1ce3324c2dfc2f2a574863642435d" "62ef191df2c1ce3324c2dfc2f2a574863642435d"
(None H.Subdir) (None H.Subdir)
, hinotify = H.callHackage "hinotify" "0.4.1" , hinotify = H.callHackage "hinotify" "0.4.1"
, hfsevents = H.callHackage "hfsevents" "0.1.6"
, hlint = , hlint =
H.callGit H.callGit
"https://github.com/ndmitchell/hlint" "https://github.com/ndmitchell/hlint"
......
...@@ -334,6 +334,10 @@ ...@@ -334,6 +334,10 @@
, mapValue = , mapValue =
"01e2f7420ed96dab112825c9507a465d3eb5a72ed7f3819cc22343695dae08a3" "01e2f7420ed96dab112825c9507a465d3eb5a72ed7f3819cc22343695dae08a3"
} }
, { mapKey = "hfsevents"
, mapValue =
"c868c24f17134ac892de9437ef15dba6584b33b02d2b4a8b0f4df69c54654d04"
}
, { mapKey = "hie-bios" , { mapKey = "hie-bios"
, mapValue = , mapValue =
"c3b86c1282ecba1e6a97d7db7965812356b545b3fa2e17bc10f9a7845b4fcbfc" "c3b86c1282ecba1e6a97d7db7965812356b545b3fa2e17bc10f9a7845b4fcbfc"
......
...@@ -169,6 +169,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -169,6 +169,8 @@ final: prev: with pkgs.haskell.lib; {
here = final.callPackage (./pkgs/here.nix) { }; here = final.callPackage (./pkgs/here.nix) { };
hfsevents = final.callPackage (./pkgs/hfsevents.nix) { };
hie-bios = final.callPackage (./pkgs/hie-bios.nix) { }; hie-bios = final.callPackage (./pkgs/hie-bios.nix) { };
hie-compat = final.callPackage (./pkgs/hie-compat.nix) { }; hie-compat = final.callPackage (./pkgs/hie-compat.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