summary refs log tree commit diff
path: root/pkgs/tools/archivers/innoextract/default.nix
blob: 1f27730b19a05c0c9a8ce134d200ad50fd64d2a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{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 ];
  };
}