2021-01-17 16:17:16 +07:00
|
|
|
{ lib, stdenv, fetchurl, fuse, pkg-config }:
|
2014-08-05 21:57:20 +00:00
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-02-16 13:51:27 +00:00
|
|
|
version = "1.15.0";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "bindfs";
|
2014-08-05 21:57:20 +00:00
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
|
2021-02-16 13:51:27 +00:00
|
|
|
sha256 = "sha256-fTpXEf5pJV0Mh1MTxVikNvSx5fjcBq10WmGBdqzAx8k=";
|
2014-08-05 21:57:20 +00:00
|
|
|
};
|
|
|
|
|
|
2021-01-17 16:17:16 +07:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2017-09-05 17:26:13 -04:00
|
|
|
buildInputs = [ fuse ];
|
2016-03-29 16:40:11 +02: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";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://bindfs.org";
|
2021-01-15 16:19:50 +07:00
|
|
|
license = lib.licenses.gpl2;
|
|
|
|
|
maintainers = with lib.maintainers; [ lovek323 ];
|
|
|
|
|
platforms = lib.platforms.unix;
|
2014-08-05 21:57:20 +00:00
|
|
|
};
|
|
|
|
|
}
|