Adding unarj

svn path=/nixpkgs/trunk/; revision=24430
This commit is contained in:
Lluís Batlle i Rossell 2010-10-23 14:55:14 +00:00
parent 327a2eae30
commit 3592b9a796
2 changed files with 22 additions and 0 deletions

@ -0,0 +1,20 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "unarj-2.63a";
src = fetchurl {
url = http://www.ibiblio.org/pub/Linux/utils/compress/unarj-2.63a.tar.gz;
sha256 = "0j4sn57fq2p23pcq4ck06pm618q4vq09wgm89ilfn4c9l9x2ky1k";
};
preInstall = ''
ensureDir $out/bin
sed -i -e s,/usr/local/bin,$out/bin, Makefile
'';
meta = {
description = "Unarchiver of ARJ files";
license = "free";
};
}

@ -1300,6 +1300,8 @@ let
unrar = callPackage ../tools/archivers/unrar { };
unarj = callPackage ../tools/archivers/unarj { };
unshield = callPackage ../tools/archivers/unshield { };
unzip = unzip552;