mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
innoextract: support extraction of multi-file archives
This commit is contained in:
parent
0e23e81cc0
commit
99483fbc44
|
@ -1,4 +1,6 @@
|
|||
{stdenv, fetchurl, cmake, python, doxygen, lzma, boost}:
|
||||
{ stdenv, fetchurl, cmake, doxygen, makeWrapper, python
|
||||
, boost, lzma
|
||||
, withGog ? false, unar ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "innoextract-1.6";
|
||||
|
@ -8,14 +10,23 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "0gh3q643l8qlwla030cmf3qdcdr85ixjygkb7j4dbm7zbwa3yik6";
|
||||
};
|
||||
|
||||
buildInputs = [ python doxygen lzma boost ];
|
||||
nativeBuildInputs = [ cmake ];
|
||||
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/;
|
||||
platforms = platforms.linux;
|
||||
license = licenses.zlib;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue