innoextract: 1.4 -> 1.5
This commit is contained in:
parent
160d38711e
commit
7aeb535eb1
|
@ -1,10 +1,21 @@
|
||||||
{stdenv, fetchurl, cmake, python, doxygen, lzma, boost}:
|
{stdenv, fetchurl, cmake, python, doxygen, lzma, boost}:
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "innoextract-1.4";
|
stdenv.mkDerivation rec {
|
||||||
src = fetchurl {
|
name = "innoextract-1.5";
|
||||||
url = "http://constexpr.org/innoextract/files/${name}.tar.gz";
|
|
||||||
sha256 = "1j8wj0ijdnfh0r9qjr7ykp9v3n2yd4qisxln81bl6474w5d4njas";
|
src = fetchurl {
|
||||||
};
|
url = "http://constexpr.org/innoextract/files/${name}.tar.gz";
|
||||||
buildInputs = [ python doxygen lzma boost ];
|
sha256 = "1ks8z8glak63xvqlv7dnmlzkjrwsn81lhybmai2mja6g5jclwngj";
|
||||||
nativeBuildInputs = [ cmake ];
|
};
|
||||||
}
|
|
||||||
|
buildInputs = [ python doxygen lzma boost ];
|
||||||
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue