nixpkgs-suyu/pkgs/tools/filesystems/bindfs/default.nix

28 lines
714 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fuse, pkg-config }:
2014-08-05 23:57:20 +02:00
stdenv.mkDerivation rec {
2020-10-21 22:47:23 +02:00
version = "1.14.8";
pname = "bindfs";
2014-08-05 23:57:20 +02:00
src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
2020-10-21 22:47:23 +02:00
sha256 = "15y4brlcrqhxl6z73785m0dr1vp2q3wc6xss08x9jjr0apzmmjp5";
2014-08-05 23:57:20 +02:00
};
dontStrip = true;
nativeBuildInputs = [ pkg-config ];
buildInputs = [ fuse ];
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";
homepage = "https://bindfs.org";
2021-01-15 10:19:50 +01:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ lovek323 ];
platforms = lib.platforms.unix;
2014-08-05 23:57:20 +02:00
};
}