nixpkgs/pkgs/tools/archivers/innoextract/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

22 lines
623 B
Nix

{stdenv, fetchurl, cmake, python, doxygen, lzma, boost}:
stdenv.mkDerivation rec {
name = "innoextract-1.6";
src = fetchurl {
url = "http://constexpr.org/innoextract/files/${name}.tar.gz";
sha256 = "0gh3q643l8qlwla030cmf3qdcdr85ixjygkb7j4dbm7zbwa3yik6";
};
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 ];
};
}