tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
hubicfuse: init at 2.1.0
Lancelot SIX
10 years ago
d165ea23
c6159b26
+27
2 changed files
expand all
collapse all
unified
split
pkgs
tools
filesystems
hubicfuse
default.nix
top-level
all-packages.nix
+25
pkgs/tools/filesystems/hubicfuse/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, fetchurl, pkgconfig, curl, openssl, fuse, libxml2, json_c, file }:
2
+
3
+
stdenv.mkDerivation rec {
4
+
name = "hubicfuse-${version}";
5
+
version = "2.1.0";
6
+
7
+
src = fetchurl {
8
+
url = https://github.com/TurboGit/hubicfuse/archive/v2.1.0.tar.gz;
9
+
sha256 = "1mnijcwac6k3f6xknvdrsbmkkizpwbayqkb5l6jic15ymxv1fs7d";
10
+
};
11
+
12
+
buildInputs = [ pkgconfig curl openssl fuse libxml2 json_c file ];
13
+
postInstall = ''
14
+
install hubic_token $out/bin
15
+
mkdir -p $out/sbin
16
+
ln -sf $out/bin/hubicfuse $out/sbin/mount.hubicfuse
17
+
'';
18
+
19
+
meta = with stdenv.lib; {
20
+
homepage = https://github.com/TurboGit/hubicfuse;
21
+
description = "FUSE-based filesystem to access hubic cloud storage";
22
+
platforms = platforms.linux;
23
+
license = licenses.mit;
24
+
};
25
+
}
+2
pkgs/top-level/all-packages.nix
···
1870
1871
httptunnel = callPackage ../tools/networking/httptunnel { };
1872
0
0
1873
hwinfo = callPackage ../tools/system/hwinfo { };
1874
1875
i2c-tools = callPackage ../os-specific/linux/i2c-tools { };
···
1870
1871
httptunnel = callPackage ../tools/networking/httptunnel { };
1872
1873
+
hubicfuse = callPackage ../tools/filesystems/hubicfuse { };
1874
+
1875
hwinfo = callPackage ../tools/system/hwinfo { };
1876
1877
i2c-tools = callPackage ../os-specific/linux/i2c-tools { };