Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, curl, openssl, fuse, libxml2, json_c, file }:
2
3stdenv.mkDerivation rec {
4 pname = "hubicfuse";
5 version = "3.0.1";
6
7 src = fetchFromGitHub {
8 owner = "TurboGit";
9 repo = "hubicfuse";
10 rev = "v${version}";
11 sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
12 };
13
14 patches = [
15 # Fix Darwin build
16 # https://github.com/TurboGit/hubicfuse/pull/159
17 (fetchpatch {
18 url = "https://github.com/TurboGit/hubicfuse/commit/b460f40d86bc281a21379158a7534dfb9f283786.patch";
19 sha256 = "0nqvcbrgbc5dms8fkz3brlj40yn48p36drabrnc26gvb3hydh5dl";
20 })
21 # UPstream fix for build failure on -fno-common toolchains
22 (fetchpatch {
23 name = "fno-common.patch";
24 url = "https://github.com/TurboGit/hubicfuse/commit/34a6c3e57467b5f7e9befe2171bf4292893c5a18.patch";
25 sha256 = "0k1jz2h8sdhmi0srx0adbyrcrm57j4annj84yw6hdrly5hsf7bzc";
26 })
27 ];
28
29 nativeBuildInputs = [ pkg-config ];
30 buildInputs = [ curl openssl fuse libxml2 json_c file ];
31 postInstall = ''
32 install hubic_token $out/bin
33 mkdir -p $out/sbin
34 ln -sf $out/bin/hubicfuse $out/sbin/mount.hubicfuse
35 '';
36
37 meta = with lib; {
38 homepage = "https://github.com/TurboGit/hubicfuse";
39 description = "FUSE-based filesystem to access hubic cloud storage";
40 platforms = platforms.unix;
41 license = licenses.mit;
42 maintainers = [ maintainers.jpierre03 ];
43 };
44}