nixpkgs/pkgs/tools/filesystems/sshfs-fuse/default.nix
Eelco Dolstra 3ac4025945 * Add some packages to the channel.
svn path=/nixpkgs/trunk/; revision=24397
2010-10-21 11:18:30 +00:00

19 lines
508 B
Nix

{ stdenv, fetchurl, pkgconfig, glib, fuse }:
stdenv.mkDerivation rec {
name = "sshfs-fuse-2.2";
src = fetchurl {
url = "mirror://sourceforge/fuse/${name}.tar.gz";
sha256 = "08sl7q8nqwg57bxbzp2wb9h204gnl1w9c1f7zjdh7xdr9jybqvi0";
};
buildInputs = [ pkgconfig glib fuse ];
meta = {
homepage = http://fuse.sourceforge.net/sshfs.html;
description = "FUSE-based filesystem that allows remote filesystems to be mounted over SSH";
platforms = stdenv.lib.platforms.linux;
};
}