mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
65 lines
1.4 KiB
Nix
65 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "unrar";
|
|
version = "7.2.7";
|
|
|
|
src = fetchzip {
|
|
url = "https://www.rarlab.com/rar/unrarsrc-${finalAttrs.version}.tar.gz";
|
|
stripRoot = false;
|
|
hash = "sha256-X0MOIbsIL5iczClCLSj8UX0ofLHBu1Asap4EKKbLVnw=";
|
|
};
|
|
|
|
sourceRoot = finalAttrs.src.name;
|
|
|
|
postPatch = ''
|
|
substituteInPlace unrar/makefile \
|
|
--replace-fail "CXX=" "#CXX=" \
|
|
--replace-fail "STRIP=" "#STRIP=" \
|
|
--replace-fail "AR=" "#AR="
|
|
'';
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
# `make {unrar,lib}` call `make clean` implicitly
|
|
# separate build into different dirs to avoid deleting them
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
cp -a unrar libunrar
|
|
make -C libunrar lib -j$NIX_BUILD_CORES
|
|
make -C unrar -j$NIX_BUILD_CORES
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 unrar/unrar -t $out/bin/
|
|
install -Dm644 unrar/{acknow.txt,license.txt} -t $out/share/doc/unrar/
|
|
|
|
install -Dm755 libunrar/libunrar.so -t $out/lib/
|
|
install -Dm644 libunrar/dll.hpp -t $dev/include/unrar/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = {
|
|
description = "Utility for RAR archives";
|
|
homepage = "https://www.rarlab.com/";
|
|
license = lib.licenses.unfreeRedistributable;
|
|
mainProgram = "unrar";
|
|
maintainers = with lib.maintainers; [ wegank ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|