Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 21 lines 680 B view raw
1{stdenv, fetchurl, intltool, glib, pkgconfig, libgsf, libuuid, gcab, bzip2}: 2 3stdenv.mkDerivation rec { 4 version = "0.97"; 5 name = "msitools-${version}"; 6 7 src = fetchurl { 8 url = "http://ftp.gnome.org/pub/GNOME/sources/msitools/0.97/${name}.tar.xz"; 9 sha256 = "0pn6izlgwi4ngpk9jk2n38gcjjpk29nm15aad89bg9z3k9n2hnrs"; 10 }; 11 12 nativeBuildInputs = [ pkgconfig ]; 13 buildInputs = [intltool 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}