2014-08-05 21:57:20 +00:00
|
|
|
{ stdenv, fetchurl, fuse, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 17:19:50 +00:00
|
|
|
version = "1.13.9";
|
2014-08-05 21:57:20 +00:00
|
|
|
name = "bindfs-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-25 05:04:25 +00:00
|
|
|
url = "https://bindfs.org/downloads/${name}.tar.gz";
|
2018-02-25 17:19:50 +00:00
|
|
|
sha256 = "1dgqjq2plpds442ygpv8czr5v199ljscp33m89y19x04ssljrymc";
|
2014-08-05 21:57:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ fuse ];
|
2016-03-29 14:40:11 +00:00
|
|
|
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";
|
|
|
|
homepage = http://bindfs.org;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|