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

28 lines
726 B
Nix
Raw Normal View History

2014-08-05 21:57:20 +00:00
{ stdenv, fetchurl, fuse, pkgconfig }:
stdenv.mkDerivation rec {
version = "1.14.1";
pname = "bindfs";
2014-08-05 21:57:20 +00:00
src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
sha256 = "111i4ba4px3idmrr5qhgq01926fas1rs2yx2shnwgdk3ziqcszxl";
2014-08-05 21:57:20 +00:00
};
dontStrip = true;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fuse ];
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";
2018-05-01 03:03:23 +00:00
homepage = https://bindfs.org;
2014-08-05 21:57:20 +00:00
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
platforms = stdenv.lib.platforms.unix;
};
}