Files
nixpkgs/pkgs/by-name/mh/mhddfs/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

49 lines
938 B
Nix

{
lib,
stdenv,
fetchurl,
fuse,
pkg-config,
attr,
uthash,
}:
stdenv.mkDerivation rec {
pname = "mhddfs";
version = "0.1.39";
src = fetchurl {
url = "https://mhddfs.uvw.ru/downloads/mhddfs_${version}.tar.gz";
sha256 = "14ggmh91vv69fp2qpz0nxp0hprlw2wsijss2k2485hb0ci4cabvh";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [
fuse
attr
uthash
];
patches = [
./fix-format-security-error.patch
];
postPatch = ''
substituteInPlace src/main.c --replace "attr/xattr.h" "sys/xattr.h"
substituteInPlace src/tools.c --replace "attr/xattr.h" "sys/xattr.h"
'';
installPhase = ''
mkdir -p $out/bin
cp mhddfs $out/bin/
'';
meta = {
homepage = "https://mhddfs.uvw.ru/";
description = "Combines a several mount points into the single one";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.makefu ];
mainProgram = "mhddfs";
};
}