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

36 lines
970 B
Nix
Raw Normal View History

2021-03-26 08:55:32 +00:00
{ lib, stdenv, fetchurl, cmake, makeWrapper
2021-03-14 18:12:53 +00:00
, boost, xz
, withGog ? false, unar ? null }:
2015-11-12 00:03:43 +00:00
stdenv.mkDerivation rec {
2020-08-14 09:25:45 +00:00
name = "innoextract-1.9";
2015-11-12 00:03:43 +00:00
src = fetchurl {
url = "https://constexpr.org/innoextract/files/${name}.tar.gz";
2020-08-14 09:25:45 +00:00
sha256 = "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33";
2015-11-12 00:03:43 +00:00
};
2021-03-14 18:12:53 +00:00
buildInputs = [ xz boost ];
2021-03-26 08:55:32 +00:00
# Python is reported as missing during the build, however
# including Python does not change the output.
nativeBuildInputs = [ cmake makeWrapper ];
2021-03-26 08:55:32 +00:00
strictDeps = true;
# we need unar to for multi-archive extraction
2021-01-15 09:19:50 +00:00
postFixup = lib.optionalString withGog ''
wrapProgram $out/bin/innoextract \
2021-01-15 09:19:50 +00:00
--prefix PATH : ${lib.makeBinPath [ unar ]}
'';
2015-11-12 00:03:43 +00:00
meta = with lib; {
2015-11-12 00:03:43 +00:00
description = "A tool to unpack installers created by Inno Setup";
homepage = "https://constexpr.org/innoextract/";
2015-11-12 00:03:43 +00:00
license = licenses.zlib;
maintainers = with maintainers; [ abbradar ];
platforms = platforms.linux;
2015-11-12 00:03:43 +00:00
};
}