mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
d013bbaab9
* unshield: 1.4.3 -> 1.5.0 (#148886) * unshield: 1.5.0 -> 1.5.1 Fix library name and versioning broken in 1.5.0 Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
24 lines
593 B
Nix
24 lines
593 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, zlib, openssl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "unshield";
|
|
version = "1.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "twogood";
|
|
repo = "unshield";
|
|
rev = version;
|
|
sha256 = "1p2inn93svm83kr5p0j1al0rx47f1zykmagxsblgy04gi942iza3";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ zlib openssl ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool and library to extract CAB files from InstallShield installers";
|
|
homepage = "https://github.com/twogood/unshield";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|