nixpkgs/pkgs/tools/filesystems/hubicfuse/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

30 lines
842 B
Nix

{ stdenv, fetchFromGitHub, pkgconfig, curl, openssl, fuse, libxml2, json_c, file }:
stdenv.mkDerivation rec {
name = "hubicfuse-${version}";
version = "3.0.0";
src = fetchFromGitHub {
owner = "TurboGit";
repo = "hubicfuse";
rev = "v${version}";
sha256 = "1y4n63bk9vd6n1l5psjb9xm9h042kw4yh2ni33z7agixkanajv1s";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ curl openssl fuse libxml2 json_c file ];
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;
maintainers = [ maintainers.jpierre03 ];
};
}