Skip to content

Commit

Permalink
unshield: 1.3 -> 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens authored and grahamc committed Mar 6, 2017
1 parent abc0421 commit 918a4e6
Showing 1 changed file with 4 additions and 11 deletions.
15 changes: 4 additions & 11 deletions pkgs/tools/archivers/unshield/default.nix
@@ -1,30 +1,23 @@
{ stdenv, fetchFromGitHub, fetchpatch, cmake, zlib, openssl }:
{ stdenv, fetchFromGitHub, cmake, zlib, openssl }:

stdenv.mkDerivation rec {
name = "unshield-${version}";
version = "1.3";
version = "1.4.2";

src = fetchFromGitHub {
owner = "twogood";
repo = "unshield";
rev = version;
sha256 = "0cg84jr0ymvi8bmm3lx5hshhgm33vnr1rma1mfyqkc065c7gi9ja";
sha256 = "07lmh8vmrbqy4kd6zl5yc1ar3bg33w5cymlzwfijy6arg77hjgq9";
};

patches = [
# Fix build in separate directory
(fetchpatch {
url = "https://github.com/twogood/unshield/commit/07ce8d82f0f60b9048265410fa8063298ab520c4.patch";
sha256 = "160pbk2r98lv3vd0qxsxm6647qn5mddj37jzfmccdja4dpxhxz2z";
})
];

nativeBuildInputs = [ cmake ];
buildInputs = [ zlib openssl ];

meta = with stdenv.lib; {
description = "Tool and library to extract CAB files from InstallShield installers";
homepage = https://github.com/twogood/unshield;
homepage = "https://github.com/twogood/unshield";
license = licenses.mit;
platforms = platforms.linux;
};
Expand Down

0 comments on commit 918a4e6

Please sign in to comment.