2021-03-23 15:15:56 +01:00
|
|
|
{ lib, stdenv, fetchurl, fuse, pkg-config }:
|
2014-08-05 23:57:20 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-02-16 20:17:26 +01:00
|
|
|
version = "1.15.1";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "bindfs";
|
2014-08-05 23:57:20 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://bindfs.org/downloads/${pname}-${version}.tar.gz";
|
2021-02-16 20:17:26 +01:00
|
|
|
sha256 = "sha256-BN01hKbN+a9DRNQDxiGFyp+rMc465aJdAQG8EJNsaKs=";
|
2014-08-05 23:57:20 +02:00
|
|
|
};
|
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2021-03-23 15:15:56 +01:00
|
|
|
buildInputs = [ fuse ];
|
2016-03-29 16:40:11 +02:00
|
|
|
postFixup = ''
|
|
|
|
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
|
|
|
|
'';
|
2014-08-05 23:57:20 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A FUSE filesystem for mounting a directory to another location";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://bindfs.org";
|
2021-02-16 20:18:28 +01:00
|
|
|
license = lib.licenses.gpl2Only;
|
2021-02-16 20:18:48 +01:00
|
|
|
maintainers = with lib.maintainers; [ lovek323 lovesegfault ];
|
2021-01-15 10:19:50 +01:00
|
|
|
platforms = lib.platforms.unix;
|
2014-08-05 23:57:20 +02:00
|
|
|
};
|
|
|
|
}
|