mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 01:33:10 +00:00
26 lines
755 B
Nix
26 lines
755 B
Nix
{ lib, stdenv, fetchurl, fuse, fuse3, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.17.3";
|
|
pname = "bindfs";
|
|
|
|
src = fetchurl {
|
|
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-wWh2CRVywjJCwW6Hxb5+NRL0Q6rmNzKNjAEcBx6TAus=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = if stdenv.isDarwin then [ fuse ] else [ fuse3 ];
|
|
postFixup = ''
|
|
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
|
|
'';
|
|
|
|
meta = {
|
|
description = "A FUSE filesystem for mounting a directory to another location";
|
|
homepage = "https://bindfs.org";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ lovek323 lovesegfault ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|