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

26 lines
693 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fuse, pkg-config }:
2014-08-05 14:57:20 -07:00
stdenv.mkDerivation rec {
2021-01-24 15:24:44 -08:00
version = "1.14.9";
pname = "bindfs";
2014-08-05 14:57:20 -07:00
src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
2021-01-24 15:24:44 -08:00
sha256 = "0fnij365dn4ihkpfc92x63inxxwpminzffyj55krp1w02canpl5n";
2014-08-05 14:57:20 -07:00
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ fuse ];
postFixup = ''
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
'';
2014-08-05 14:57:20 -07:00
meta = {
description = "A FUSE filesystem for mounting a directory to another location";
homepage = "https://bindfs.org";
2021-01-15 01:19:50 -08:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ lovek323 ];
platforms = lib.platforms.unix;
2014-08-05 14:57:20 -07:00
};
}