1 { lib, stdenv, fetchFromGitHub, cmake, zlib, openssl }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1p2inn93svm83kr5p0j1al0rx47f1zykmagxsblgy04gi942iza3";
14 nativeBuildInputs = [ cmake ];
15 buildInputs = [ zlib openssl ];
18 description = "Tool and library to extract CAB files from InstallShield installers";
19 homepage = "https://github.com/twogood/unshield";
20 license = licenses.mit;
21 platforms = platforms.linux;