2017-01-22 20:41:51 +00:00
|
|
|
{ stdenv, fetchFromGitHub, pkgconfig, curl, openssl, fuse, libxml2, json_c, file }:
|
2015-08-03 21:05:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "hubicfuse";
|
2018-02-27 02:45:05 +00:00
|
|
|
version = "3.0.1";
|
2015-08-03 21:05:16 +01:00
|
|
|
|
2017-01-22 20:41:51 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "TurboGit";
|
|
|
|
repo = "hubicfuse";
|
|
|
|
rev = "v${version}";
|
2018-02-27 02:45:05 +00:00
|
|
|
sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
|
2015-08-03 21:05:16 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ curl openssl fuse libxml2 json_c file ];
|
2015-08-03 21:05:16 +01:00
|
|
|
postInstall = ''
|
|
|
|
install hubic_token $out/bin
|
|
|
|
mkdir -p $out/sbin
|
|
|
|
ln -sf $out/bin/hubicfuse $out/sbin/mount.hubicfuse
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/TurboGit/hubicfuse;
|
|
|
|
description = "FUSE-based filesystem to access hubic cloud storage";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.mit;
|
2017-01-22 21:51:40 +00:00
|
|
|
maintainers = [ maintainers.jpierre03 ];
|
2015-08-03 21:05:16 +01:00
|
|
|
};
|
|
|
|
}
|