summary refs log tree commit diff
path: root/pkgs/tools/archivers/unshield/default.nix
blob: cfab2443032bd15edfba09816dd055375f381162 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchFromGitHub, cmake, zlib, openssl }:

stdenv.mkDerivation rec {
  pname = "unshield";
  version = "1.4.3";

  src = fetchFromGitHub {
    owner = "twogood";
    repo = "unshield";
    rev = version;
    sha256 = "19wn22vszhci8dfcixx5rliz7phx3lv5ablvhjlclvj75k2vsdqd";
  };


  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;
    license = licenses.mit;
    platforms = platforms.linux;
  };
}