2018-12-17 17:49:34 +00:00
|
|
|
{ stdenv, fetchurl, intltool, glib, pkgconfig, libgsf, libuuid, gcab, bzip2 }:
|
2016-02-17 21:02:17 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-17 17:49:34 +00:00
|
|
|
version = "0.98";
|
2016-02-17 21:02:17 +00:00
|
|
|
name = "msitools-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2018-12-17 17:49:34 +00:00
|
|
|
url = "mirror://gnome/sources/msitools/${version}/${name}.tar.xz";
|
|
|
|
sha256 = "19wb3n3nwkpc6bjr0q3f1znaxsfaqgjbdxxnbx8ic8bb5b49hwac";
|
2016-02-17 21:02:17 +00:00
|
|
|
};
|
|
|
|
|
2018-12-17 17:49:34 +00:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
|
|
|
buildInputs = [ glib libgsf libuuid gcab bzip2 ];
|
2016-02-17 21:02:17 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Set of programs to inspect and build Windows Installer (.MSI) files";
|
|
|
|
homepage = https://wiki.gnome.org/msitools;
|
2018-12-17 17:49:34 +00:00
|
|
|
license = [ licenses.gpl2 licenses.lgpl21 ];
|
2016-02-17 21:02:17 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|