* Added unshield, a program for unpacking InstallShield CAB files

(which are different from Windows Installer CAB files).

svn path=/nixpkgs/trunk/; revision=8797
This commit is contained in:
Eelco Dolstra 2007-05-28 17:09:30 +00:00
parent fd019f21d5
commit 89a47c3feb
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl, zlib}:
stdenv.mkDerivation {
name = "unshield-0.5";
src = fetchurl {
url = http://heanet.dl.sourceforge.net/sourceforge/synce/unshield-0.5.tar.gz;
sha256 = "1apdj4qphf6m21lqj9l8sg8rpn85qkp5592w5np9xbhr8776cg3p";
};
configureFlags = "--with-zlib=${zlib}";
}

View File

@ -542,6 +542,10 @@ rec {
inherit (xlibs) imake;
};
unshield = import ../tools/archivers/unshield {
inherit fetchurl stdenv zlib;
};
unzip = import ../tools/archivers/unzip {
inherit fetchurl stdenv;
};