summary refs log tree commit diff
path: root/pkgs/tools/filesystems/hubicfuse/default.nix
blob: 0ebc1f232234d3297b5661f4deda2111fc1241db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, curl, openssl, fuse, libxml2, json_c, file }:

stdenv.mkDerivation rec {
  pname = "hubicfuse";
  version = "3.0.1";

  src = fetchFromGitHub {
    owner = "TurboGit";
    repo = "hubicfuse";
    rev = "v${version}";
    sha256 = "1x988hfffxgvqxh083pv3lj5031fz03sbgiiwrjpaiywfbhm8ffr";
  };

  patches = [
    # Fix Darwin build
    # https://github.com/TurboGit/hubicfuse/pull/159
    (fetchpatch {
      url = "https://github.com/TurboGit/hubicfuse/commit/b460f40d86bc281a21379158a7534dfb9f283786.patch";
      sha256 = "0nqvcbrgbc5dms8fkz3brlj40yn48p36drabrnc26gvb3hydh5dl";
    })
  ];

  nativeBuildInputs = [ pkg-config ];
  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 lib; {
    homepage = "https://github.com/TurboGit/hubicfuse";
    description = "FUSE-based filesystem to access hubic cloud storage";
    platforms = platforms.unix;
    license = licenses.mit;
    maintainers = [ maintainers.jpierre03 ];
  };
}