mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
33 lines
903 B
Nix
33 lines
903 B
Nix
{ stdenv, fetchurl, cmake, makeWrapper, python
|
|
, boost, lzma
|
|
, withGog ? false, unar ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "innoextract-1.7";
|
|
|
|
src = fetchurl {
|
|
url = "http://constexpr.org/innoextract/files/${name}.tar.gz";
|
|
sha256 = "197hs9aj1ska6czrsq4caazsw9v0xbaa0lazbh380fmwy8rbgvy1";
|
|
};
|
|
|
|
buildInputs = [ python lzma boost ];
|
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# we need unar to for multi-archive extraction
|
|
postFixup = stdenv.lib.optionalString withGog ''
|
|
wrapProgram $out/bin/innoextract \
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ unar ]}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A tool to unpack installers created by Inno Setup";
|
|
homepage = http://constexpr.org/innoextract/;
|
|
license = licenses.zlib;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|