nixpkgs/pkgs/tools/filesystems/hubicfuse/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.4 KiB
Nix
Raw Normal View History

2021-03-27 15:00:57 +00:00
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, curl, openssl, fuse, libxml2, json_c, file }:
2015-08-03 20:05:16 +00:00
stdenv.mkDerivation rec {
pname = "hubicfuse";
version = "3.0.1";
2015-08-03 20:05:16 +00:00
src = fetchFromGitHub {
owner = "TurboGit";
repo = "hubicfuse";
rev = "v${version}";
sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
2015-08-03 20:05:16 +00:00
};
2021-03-27 15:00:57 +00:00
patches = [
# Fix Darwin build
# https://github.com/TurboGit/hubicfuse/pull/159
(fetchpatch {
url = "https://github.com/TurboGit/hubicfuse/commit/b460f40d86bc281a21379158a7534dfb9f283786.patch";
sha256 = "0nqvcbrgbc5dms8fkz3brlj40yn48p36drabrnc26gvb3hydh5dl";
})
# UPstream fix for build failure on -fno-common toolchains
(fetchpatch {
name = "fno-common.patch";
url = "https://github.com/TurboGit/hubicfuse/commit/34a6c3e57467b5f7e9befe2171bf4292893c5a18.patch";
sha256 = "0k1jz2h8sdhmi0srx0adbyrcrm57j4annj84yw6hdrly5hsf7bzc";
})
2021-03-27 15:00:57 +00:00
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ curl openssl fuse libxml2 json_c file ];
2015-08-03 20:05:16 +00:00
postInstall = ''
install hubic_token $out/bin
mkdir -p $out/sbin
ln -sf $out/bin/hubicfuse $out/sbin/mount.hubicfuse
'';
meta = with lib; {
homepage = "https://github.com/TurboGit/hubicfuse";
2015-08-03 20:05:16 +00:00
description = "FUSE-based filesystem to access hubic cloud storage";
2021-03-27 15:00:57 +00:00
platforms = platforms.unix;
2015-08-03 20:05:16 +00:00
license = licenses.mit;
2017-01-22 21:51:40 +00:00
maintainers = [ maintainers.jpierre03 ];
2015-08-03 20:05:16 +00:00
};
}