28 lines
714 B
Nix
28 lines
714 B
Nix
{ lib, stdenv, fetchurl, fuse, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.14.8";
|
|
pname = "bindfs";
|
|
|
|
src = fetchurl {
|
|
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
|
|
sha256 = "15y4brlcrqhxl6z73785m0dr1vp2q3wc6xss08x9jjr0apzmmjp5";
|
|
};
|
|
|
|
dontStrip = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ fuse ];
|
|
postFixup = ''
|
|
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
|
|
'';
|
|
|
|
meta = {
|
|
description = "A FUSE filesystem for mounting a directory to another location";
|
|
homepage = "https://bindfs.org";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = with lib.maintainers; [ lovek323 ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|