nixpkgs/pkgs/tools/archivers/unshield/default.nix

25 lines
606 B
Nix
Raw Normal View History

2017-03-03 21:39:26 +00:00
{ stdenv, fetchFromGitHub, cmake, zlib, openssl }:
2016-04-13 11:07:09 +00:00
stdenv.mkDerivation rec {
name = "unshield-${version}";
2017-03-03 21:39:26 +00:00
version = "1.4.2";
2016-04-13 11:07:09 +00:00
src = fetchFromGitHub {
owner = "twogood";
repo = "unshield";
rev = version;
2017-03-03 21:39:26 +00:00
sha256 = "07lmh8vmrbqy4kd6zl5yc1ar3bg33w5cymlzwfijy6arg77hjgq9";
2016-04-13 11:07:09 +00:00
};
nativeBuildInputs = [ cmake ];
buildInputs = [ zlib openssl ];
meta = with stdenv.lib; {
description = "Tool and library to extract CAB files from InstallShield installers";
2017-03-03 21:39:26 +00:00
homepage = "https://github.com/twogood/unshield";
2016-04-13 11:07:09 +00:00
license = licenses.mit;
platforms = platforms.linux;
};
}