2014-08-05 22:57:20 +01:00
|
|
|
{ stdenv, fetchurl, fuse, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-10-21 21:47:23 +01:00
|
|
|
version = "1.14.8";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "bindfs";
|
2014-08-05 22:57:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
|
2020-10-21 21:47:23 +01:00
|
|
|
sha256 = "15y4brlcrqhxl6z73785m0dr1vp2q3wc6xss08x9jjr0apzmmjp5";
|
2014-08-05 22:57:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dontStrip = true;
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ fuse ];
|
2016-03-29 15:40:11 +01:00
|
|
|
postFixup = ''
|
|
|
|
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
|
|
|
|
'';
|
2014-08-05 22:57:20 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A FUSE filesystem for mounting a directory to another location";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://bindfs.org";
|
2014-08-05 22:57:20 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|