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

28 lines
728 B
Nix
Raw Normal View History

2014-08-05 23:57:20 +02:00
{ stdenv, fetchurl, fuse, pkgconfig }:
stdenv.mkDerivation rec {
2020-05-04 15:00:37 +02:00
version = "1.14.5";
pname = "bindfs";
2014-08-05 23:57:20 +02:00
src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
2020-05-04 15:00:37 +02:00
sha256 = "173c5fcnfbnlw5a437r2x899ax77j3wp8gg8gffhryahcgyn1abq";
2014-08-05 23:57:20 +02:00
};
dontStrip = true;
nativeBuildInputs = [ pkgconfig ];
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";
2014-08-05 23:57:20 +02:00
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
platforms = stdenv.lib.platforms.unix;
};
}