1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #9106 from lancelotsix/add_hubicfuse

hubicfuse: init at 2.1.0
This commit is contained in:
lethalman 2015-08-06 11:42:19 +02:00
commit 8282baacc0
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, pkgconfig, curl, openssl, fuse, libxml2, json_c, file }:
stdenv.mkDerivation rec {
name = "hubicfuse-${version}";
version = "2.1.0";
src = fetchurl {
url = https://github.com/TurboGit/hubicfuse/archive/v2.1.0.tar.gz;
sha256 = "1mnijcwac6k3f6xknvdrsbmkkizpwbayqkb5l6jic15ymxv1fs7d";
};
buildInputs = [ pkgconfig 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;
};
}

View file

@ -1871,6 +1871,8 @@ let
httptunnel = callPackage ../tools/networking/httptunnel { };
hubicfuse = callPackage ../tools/filesystems/hubicfuse { };
hwinfo = callPackage ../tools/system/hwinfo { };
i2c-tools = callPackage ../os-specific/linux/i2c-tools { };