3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/archivers/unshield/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
593 B
Nix
Raw Normal View History

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