2015-11-12 03:03:43 +03:00
|
|
|
{stdenv, fetchurl, cmake, python, doxygen, lzma, boost}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-03-25 09:16:31 +03:00
|
|
|
name = "innoextract-1.6";
|
2015-11-12 03:03:43 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://constexpr.org/innoextract/files/${name}.tar.gz";
|
2016-03-25 09:16:31 +03:00
|
|
|
sha256 = "0gh3q643l8qlwla030cmf3qdcdr85ixjygkb7j4dbm7zbwa3yik6";
|
2015-11-12 03:03:43 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ python doxygen lzma boost ];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A tool to unpack installers created by Inno Setup";
|
2017-08-01 23:03:30 +03:00
|
|
|
homepage = http://constexpr.org/innoextract/;
|
2015-11-12 03:03:43 +03:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.zlib;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
|
|
|
};
|
|
|
|
}
|