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

25 lines
594 B
Nix
Raw Normal View History

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