2021-03-23 15:15:56 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, fuse }:
|
2012-12-16 02:32:10 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "unionfs-fuse";
|
2020-05-10 22:23:42 +02:00
|
|
|
version = "2.1";
|
2012-12-16 02:32:10 +01:00
|
|
|
|
2017-03-04 01:14:22 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rpodgorny";
|
|
|
|
repo = "unionfs-fuse";
|
|
|
|
rev = "v${version}";
|
2020-05-10 22:23:42 +02:00
|
|
|
sha256 = "0bwx70x834qgqh53vqp18bhbxbsny80hz922rbgj8k9wj7cbfilm";
|
2012-12-16 02:32:10 +01:00
|
|
|
};
|
|
|
|
|
2021-03-06 23:50:29 +01:00
|
|
|
patches = [
|
|
|
|
# Prevent the unionfs daemon from being killed during
|
|
|
|
# shutdown. See
|
|
|
|
# http://www.freedesktop.org/wiki/Software/systemd/RootStorageDaemons/
|
|
|
|
# for details.
|
|
|
|
./prevent-kill-on-shutdown.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace CMakeLists.txt \
|
2021-03-23 15:15:56 +01:00
|
|
|
--replace '/usr/local/include/osxfuse/fuse' '${fuse}/include/fuse'
|
2021-03-06 23:50:29 +01:00
|
|
|
'';
|
2014-05-21 15:19:01 +02:00
|
|
|
|
2020-12-31 08:48:55 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2021-03-23 15:15:56 +01:00
|
|
|
buildInputs = [ fuse ];
|
2012-12-16 22:42:45 +01:00
|
|
|
|
2013-04-09 16:36:38 +02:00
|
|
|
# Put the unionfs mount helper in place as mount.unionfs-fuse. This makes it
|
|
|
|
# possible to do:
|
|
|
|
# mount -t unionfs-fuse none /dest -o dirs=/source1=RW,/source2=RO
|
|
|
|
#
|
|
|
|
# This must be done in preConfigure because the build process removes
|
|
|
|
# helper from the source directory during the build.
|
2021-03-06 23:50:29 +01:00
|
|
|
preConfigure = lib.optionalString (!stdenv.isDarwin) ''
|
2014-06-30 14:56:10 +02:00
|
|
|
mkdir -p $out/sbin
|
2013-04-09 16:36:38 +02:00
|
|
|
cp -a mount.unionfs $out/sbin/mount.unionfs-fuse
|
|
|
|
substituteInPlace $out/sbin/mount.unionfs-fuse --replace mount.fuse ${fuse}/sbin/mount.fuse
|
|
|
|
substituteInPlace $out/sbin/mount.unionfs-fuse --replace unionfs $out/bin/unionfs
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2012-12-16 22:42:45 +01:00
|
|
|
description = "FUSE UnionFS implementation";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/rpodgorny/unionfs-fuse";
|
2017-07-10 02:05:27 +02:00
|
|
|
license = licenses.bsd3;
|
2021-03-06 23:50:29 +01:00
|
|
|
platforms = platforms.unix;
|
2017-07-10 02:05:27 +02:00
|
|
|
maintainers = with maintainers; [ orivej ];
|
2012-12-16 22:42:45 +01:00
|
|
|
};
|
2012-12-16 02:32:10 +01:00
|
|
|
}
|