nixpkgs/pkgs/tools/archivers/unrar/default.nix
John Wiegley 28b6fb61e6 Change occurrences of gcc to the more general cc
This is done for the sake of Yosemite, which does not have gcc, and yet
this change is also compatible with Linux.
2014-12-26 11:06:21 -06:00

34 lines
699 B
Nix

{stdenv, fetchurl}:
let
version = "5.1.7";
in
stdenv.mkDerivation {
name = "unrar-${version}";
src = fetchurl {
url = "http://www.rarlab.com/rar/unrarsrc-${version}.tar.gz";
sha256 = "13ida8vcamiagl40d9yfjma9k6givxczhx278f1p7bv9wgb8gfmc";
};
preBuild = ''
export buildFlags="CXX=$CXX"
'';
installPhase = ''
installBin unrar
mkdir -p $out/share/doc/unrar
cp acknow.txt license.txt \
$out/share/doc/unrar
'';
meta = with stdenv.lib; {
description = "Utility for RAR archives";
homepage = http://www.rarlab.com/;
license = licenses.unfreeRedistributable;
maintainers = [ maintainers.emery ];
platforms = platforms.all;
};
}