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

30 lines
832 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, pkgconfig, curl, openssl, fuse, libxml2, json_c, file }:
2015-08-03 22:05:16 +02:00
stdenv.mkDerivation rec {
pname = "hubicfuse";
version = "3.0.1";
2015-08-03 22:05:16 +02:00
src = fetchFromGitHub {
owner = "TurboGit";
repo = "hubicfuse";
rev = "v${version}";
sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
2015-08-03 22:05:16 +02:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ curl openssl fuse libxml2 json_c file ];
2015-08-03 22:05:16 +02: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 22:51:40 +01:00
maintainers = [ maintainers.jpierre03 ];
2015-08-03 22:05:16 +02:00
};
}