7893a6e2c0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/unrar/versions
46 lines
1012 B
Nix
46 lines
1012 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "unrar-${version}";
|
|
version = "5.7.5";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.rarlab.com/rar/unrarsrc-${version}.tar.gz";
|
|
sha256 = "1vp2pc1n5qhri0zr7fszlpjz8niw9x4cl47wbd9v323sm3dgvhp1";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace makefile \
|
|
--replace "CXX=" "#CXX=" \
|
|
--replace "STRIP=" "#STRIP=" \
|
|
--replace "AR=" "#AR="
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make unrar
|
|
make clean
|
|
make lib
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -Dt "$out/bin" unrar
|
|
|
|
mkdir -p $out/share/doc/unrar
|
|
cp acknow.txt license.txt \
|
|
$out/share/doc/unrar
|
|
|
|
install -Dm755 libunrar.so $out/lib/libunrar.so
|
|
install -D dll.hpp $out/include/unrar/dll.hpp
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Utility for RAR archives";
|
|
homepage = http://www.rarlab.com/;
|
|
license = licenses.unfreeRedistributable;
|
|
maintainers = [ maintainers.ehmry ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|