hubicfuse: add darwin build
This commit is contained in:
parent
dff6460d27
commit
f85acdfaa1
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, pkg-config, curl, openssl, fuse, libxml2, json_c, file }:
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, curl, openssl, fuse, libxml2, json_c, file }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "hubicfuse";
|
pname = "hubicfuse";
|
||||||
|
@ -11,6 +11,15 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
|
sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Fix Darwin build
|
||||||
|
# https://github.com/TurboGit/hubicfuse/pull/159
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/TurboGit/hubicfuse/commit/b460f40d86bc281a21379158a7534dfb9f283786.patch";
|
||||||
|
sha256 = "0nqvcbrgbc5dms8fkz3brlj40yn48p36drabrnc26gvb3hydh5dl";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ curl openssl fuse libxml2 json_c file ];
|
buildInputs = [ curl openssl fuse libxml2 json_c file ];
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
@ -22,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/TurboGit/hubicfuse";
|
homepage = "https://github.com/TurboGit/hubicfuse";
|
||||||
description = "FUSE-based filesystem to access hubic cloud storage";
|
description = "FUSE-based filesystem to access hubic cloud storage";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [ maintainers.jpierre03 ];
|
maintainers = [ maintainers.jpierre03 ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue