mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
dfd300c81d
Upstream killed the pkgs server but src continues to serve up the exact same content, so we can just point there and all hashes should be unchanged.
24 lines
612 B
Nix
24 lines
612 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "unarj-${version}";
|
|
version = "2.65";
|
|
|
|
src = fetchurl {
|
|
sha256 = "0r027z7a0azrd5k885xvwhrxicpd0ah57jzmaqlypxha2qjw7p6p";
|
|
url = "http://src.fedoraproject.org/repo/pkgs/unarj/${name}.tar.gz/c6fe45db1741f97155c7def322aa74aa/${name}.tar.gz";
|
|
};
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/bin
|
|
sed -i -e s,/usr/local/bin,$out/bin, Makefile
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Unarchiver of ARJ files";
|
|
license = licenses.free;
|
|
# Vulnerable to CVE-2015-0557 & possibly CVE-2015-0556, CVE-2015-2782:
|
|
broken = true;
|
|
};
|
|
}
|