summary refs log tree commit diff
path: root/pkgs/development/tools/misc/msitools/default.nix
blob: 4a5d87fb4f7c5c534fa3588092893bbded72f8e6 (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, intltool, glib, pkgconfig, libgsf, libuuid, gcab, bzip2 }:

stdenv.mkDerivation rec {
  version = "0.98";
  name = "msitools-${version}";

  src = fetchurl {
    url = "mirror://gnome/sources/msitools/${version}/${name}.tar.xz";
    sha256 = "19wb3n3nwkpc6bjr0q3f1znaxsfaqgjbdxxnbx8ic8bb5b49hwac";
  };

  nativeBuildInputs = [ intltool pkgconfig ];
  buildInputs = [ glib libgsf libuuid gcab bzip2 ];

  meta = with stdenv.lib; {
    description = "Set of programs to inspect and build Windows Installer (.MSI) files";
    homepage = https://wiki.gnome.org/msitools;
    license = [ licenses.gpl2 licenses.lgpl21 ];
    platforms = platforms.unix;
  };
}