nixpkgs/pkgs/tools/filesystems/bindfs/default.nix

28 lines
727 B
Nix
Raw Normal View History

2014-08-05 21:57:20 +00:00
{ stdenv, fetchurl, fuse, pkgconfig }:
stdenv.mkDerivation rec {
version = "1.13.9";
2014-08-05 21:57:20 +00:00
name = "bindfs-${version}";
src = fetchurl {
url = "https://bindfs.org/downloads/${name}.tar.gz";
sha256 = "1dgqjq2plpds442ygpv8czr5v199ljscp33m89y19x04ssljrymc";
2014-08-05 21:57:20 +00:00
};
dontStrip = true;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse ];
postFixup = ''
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
'';
2014-08-05 21:57:20 +00:00
meta = {
description = "A FUSE filesystem for mounting a directory to another location";
2018-05-01 03:03:23 +00:00
homepage = https://bindfs.org;
2014-08-05 21:57:20 +00:00
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
platforms = stdenv.lib.platforms.unix;
};
}