1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/filesystems/sshfs-fuse/default.nix

27 lines
711 B
Nix
Raw Normal View History

2016-02-25 11:27:18 +00:00
{ stdenv, fetchFromGitHub, pkgconfig, glib, fuse, autoreconfHook }:
stdenv.mkDerivation rec {
2016-02-25 11:27:18 +00:00
name = "sshfs-fuse-2.6";
2016-02-25 11:27:18 +00:00
src = fetchFromGitHub {
repo = "sshfs";
owner = "libfuse";
rev = "sshfs_2_6";
sha256 = "08ffvviinjf8ncs8z494q739a8lky9z46i09ghj1y38qzgvk3fpw";
};
2016-02-25 11:27:18 +00:00
buildInputs = [ pkgconfig glib fuse autoreconfHook ];
postInstall = ''
mkdir -p $out/sbin
ln -sf $out/bin/sshfs $out/sbin/mount.sshfs
'';
2015-06-22 07:25:07 +01:00
meta = with stdenv.lib; {
2016-01-27 16:33:14 +00:00
homepage = https://github.com/libfuse/sshfs;
description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";
2015-06-22 07:25:07 +01:00
platforms = platforms.linux;
maintainers = with maintainers; [ jgeerds ];
};
}