My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/archivers/unrar/default.nix

54 lines
1.2 KiB

{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "unrar";
version = "6.1.7";
src = fetchurl {
url = "https://www.rarlab.com/rar/unrarsrc-${version}.tar.gz";
hash = "sha256-3nW2E2lYFz/fxTDTigFFtyNCzw04Qr97sSDTNmAtiO0=";
};
postPatch = ''
substituteInPlace makefile \
--replace "CXX=" "#CXX=" \
--replace "STRIP=" "#STRIP=" \
--replace "AR=" "#AR="
'';
buildPhase = ''
# `make {unrar,lib}` call `make clean` implicitly
# move build results to another dir to avoid deleting them
mkdir -p bin
make unrar
mv unrar bin
make lib
mv libunrar.so bin
'';
outputs = [ "out" "dev" ];
installPhase = ''
install -Dt "$out/bin" bin/unrar
mkdir -p $out/share/doc/unrar
cp acknow.txt license.txt \
$out/share/doc/unrar
install -Dm755 bin/libunrar.so $out/lib/libunrar.so
install -Dt $dev/include/unrar/ *.hpp
'';
setupHook = ./setup-hook.sh;
meta = with lib; {
description = "Utility for RAR archives";
homepage = "https://www.rarlab.com/";
license = licenses.unfreeRedistributable;
maintainers = [ maintainers.ehmry ];
platforms = platforms.all;
};
}