2007-06-24 17:34:44 +02:00
|
|
|
{stdenv, fetchurl}:
|
2014-04-07 23:13:24 +02:00
|
|
|
|
2016-03-05 07:15:46 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-04-07 23:13:24 +02:00
|
|
|
name = "unrar-${version}";
|
2016-07-30 02:19:45 +02:00
|
|
|
version = "5.4.4";
|
2007-06-24 17:34:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-04-07 23:13:24 +02:00
|
|
|
url = "http://www.rarlab.com/rar/unrarsrc-${version}.tar.gz";
|
2016-07-30 02:19:45 +02:00
|
|
|
sha256 = "10rdbp19mcblgzhs9xh3lr1d1x0n1clyc46flg21ic3427b6assm";
|
2007-06-24 17:34:44 +02:00
|
|
|
};
|
|
|
|
|
2016-03-11 10:42:16 +01:00
|
|
|
postPatch = ''
|
|
|
|
sed 's/^CXX=g++/#CXX/' -i makefile
|
|
|
|
'';
|
|
|
|
|
2016-03-05 07:15:46 +01:00
|
|
|
buildPhase = ''
|
|
|
|
make unrar
|
|
|
|
make clean
|
|
|
|
make lib
|
2014-12-17 19:11:30 +01:00
|
|
|
'';
|
|
|
|
|
2010-01-07 23:42:25 +01:00
|
|
|
installPhase = ''
|
2015-12-05 13:59:05 +01:00
|
|
|
install -Dt "$out/bin" unrar
|
2014-09-05 16:14:36 +02:00
|
|
|
|
|
|
|
mkdir -p $out/share/doc/unrar
|
|
|
|
cp acknow.txt license.txt \
|
|
|
|
$out/share/doc/unrar
|
2016-03-05 07:15:46 +01:00
|
|
|
|
|
|
|
install -Dm755 libunrar.so $out/lib/libunrar.so
|
|
|
|
install -D dll.hpp $out/include/unrar/dll.hpp
|
2010-01-07 23:42:25 +01:00
|
|
|
'';
|
2007-06-24 17:34:44 +02:00
|
|
|
|
2015-03-27 21:22:51 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2014-09-05 16:14:36 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-04-07 23:13:24 +02:00
|
|
|
description = "Utility for RAR archives";
|
2014-09-05 16:14:36 +02:00
|
|
|
homepage = http://www.rarlab.com/;
|
2016-01-02 12:30:28 +01:00
|
|
|
license = licenses.unfreeRedistributable;
|
2015-12-05 22:41:25 +01:00
|
|
|
maintainers = [ maintainers.ehmry ];
|
2014-09-05 16:14:36 +02:00
|
|
|
platforms = platforms.all;
|
2014-04-07 23:13:24 +02:00
|
|
|
};
|
2007-06-24 17:34:44 +02:00
|
|
|
}
|