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