summary refs log blame commit diff
path: root/pkgs/tools/filesystems/hubicfuse/default.nix
blob: 9b1c2b66e7aae2b708ecf5d86fe4b7888384fd9c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                                   

                         
                      
                    
 



                         
                                                                    

    

                                                          










                                                                        
                                            

    
{ stdenv, fetchFromGitHub, pkgconfig, 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";
  };

  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 ];
  };
}