1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 11:32:03 +00:00
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 22:57:20 +01:00
stdenv.mkDerivation rec {
2021-01-24 23:24:44 +00:00
version = "1.14.9";
pname = "bindfs";
2014-08-05 22:57:20 +01:00
src = fetchurl {
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
2021-01-24 23:24:44 +00:00
sha256 = "0fnij365dn4ihkpfc92x63inxxwpminzffyj55krp1w02canpl5n";
2014-08-05 22:57:20 +01:00
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ fuse ];
postFixup = ''
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
'';
2014-08-05 22:57:20 +01:00
meta = {
description = "A FUSE filesystem for mounting a directory to another location";
homepage = "https://bindfs.org";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ lovek323 ];
platforms = lib.platforms.unix;
2014-08-05 22:57:20 +01:00
};
}