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

22 lines
623 B
Nix
Raw Normal View History

2015-11-12 00:03:43 +00:00
{stdenv, fetchurl, cmake, python, doxygen, lzma, boost}:
stdenv.mkDerivation rec {
2016-03-25 06:16:31 +00:00
name = "innoextract-1.6";
2015-11-12 00:03:43 +00:00
src = fetchurl {
url = "http://constexpr.org/innoextract/files/${name}.tar.gz";
2016-03-25 06:16:31 +00:00
sha256 = "0gh3q643l8qlwla030cmf3qdcdr85ixjygkb7j4dbm7zbwa3yik6";
2015-11-12 00:03:43 +00:00
};
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/;
2015-11-12 00:03:43 +00:00
platforms = platforms.linux;
license = licenses.zlib;
maintainers = with maintainers; [ abbradar ];
};
}