Files
nixpkgs/pkgs/by-name/li/libunarr/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

46 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchurl,
fetchpatch,
cmake,
}:
stdenv.mkDerivation rec {
pname = "libunarr";
version = "1.1.1";
src = fetchurl {
url = "https://github.com/selmf/unarr/releases/download/v${version}/unarr-${version}.tar.xz";
hash = "sha256-Mo76BOqZbdOJFrEkeozxdqwpuFyvkhdONNMZmN5BdNI=";
};
patches = [
# cmake-4 compatibility:
# https://github.com/selmf/unarr/pull/30
(fetchpatch {
name = "cmake-4.patch";
url = "https://github.com/selmf/unarr/commit/1df8ab3d281409e9fe6bed8bf485976bb47f5bef.patch";
hash = "sha256-u3shRgtRcHYxvXAHmYyQH1HLYV1PgWaJBY7BZCOYiL4=";
})
];
postPatch = lib.optionalString stdenv.hostPlatform.isDarwin ''
substituteInPlace CMakeLists.txt \
--replace "-flto" "" \
--replace "AppleClang" "Clang"
'';
nativeBuildInputs = [
cmake
];
meta = with lib; {
homepage = "https://github.com/selmf/unarr";
description = "Lightweight decompression library with support for rar, tar and zip archives";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ wegank ];
platforms = platforms.unix;
};
}