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

31 lines
857 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cmake, makeWrapper, python
, boost, lzma
, 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
};
buildInputs = [ python lzma boost ];
nativeBuildInputs = [ cmake makeWrapper ];
# 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
};
}