1{ stdenv, fetchurl, intltool, glib, pkgconfig, libgsf, libuuid, gcab, bzip2 }:
2
3stdenv.mkDerivation rec {
4 version = "0.98";
5 name = "msitools-${version}";
6
7 src = fetchurl {
8 url = "mirror://gnome/sources/msitools/${version}/${name}.tar.xz";
9 sha256 = "19wb3n3nwkpc6bjr0q3f1znaxsfaqgjbdxxnbx8ic8bb5b49hwac";
10 };
11
12 nativeBuildInputs = [ intltool pkgconfig ];
13 buildInputs = [ glib libgsf libuuid gcab bzip2 ];
14
15 meta = with stdenv.lib; {
16 description = "Set of programs to inspect and build Windows Installer (.MSI) files";
17 homepage = https://wiki.gnome.org/msitools;
18 license = [ licenses.gpl2 licenses.lgpl21 ];
19 platforms = platforms.unix;
20 };
21}