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

26 lines
709 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fuse, pkg-config }:
2014-08-05 21:57:20 +00:00
stdenv.mkDerivation rec {
2021-02-16 19:17:26 +00:00
version = "1.15.1";
pname = "bindfs";
2014-08-05 21:57:20 +00:00
src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
2021-02-16 19:17:26 +00:00
sha256 = "sha256-BN01hKbN+a9DRNQDxiGFyp+rMc465aJdAQG8EJNsaKs=";
2014-08-05 21:57:20 +00:00
};
nativeBuildInputs = [ pkg-config ];
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";
homepage = "https://bindfs.org";
2021-02-16 19:18:28 +00:00
license = lib.licenses.gpl2Only;
maintainers = with lib.maintainers; [ lovek323 lovesegfault ];
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
2014-08-05 21:57:20 +00:00
};
}