about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/msitools
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-12-17 09:49:34 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2018-12-17 18:49:34 +0100
commitd9b1ae9eab8631292e647736fc98d8fd423b25fc (patch)
treea72def4b282c0c6d5fbc2a14cf4fb76d15e2d7a7 /pkgs/development/tools/misc/msitools
parent585b741cb72f34912b07a5234057dce47550b0eb (diff)
msitools: 0.97 -> 0.98
* msitools: 0.97 -> 0.98 (#52188)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/msitools/versions

* msitools: fetch from Gnome mirrors

+ misc cleanup
Diffstat (limited to 'pkgs/development/tools/misc/msitools')
-rw-r--r--pkgs/development/tools/misc/msitools/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/development/tools/misc/msitools/default.nix b/pkgs/development/tools/misc/msitools/default.nix
index ebba56d56d3bd..4a5d87fb4f7c5 100644
--- a/pkgs/development/tools/misc/msitools/default.nix
+++ b/pkgs/development/tools/misc/msitools/default.nix
@@ -1,21 +1,21 @@
-{stdenv, fetchurl, intltool, glib, pkgconfig, libgsf, libuuid, gcab, bzip2}:
+{ stdenv, fetchurl, intltool, glib, pkgconfig, libgsf, libuuid, gcab, bzip2 }:
 
 stdenv.mkDerivation rec {
-  version = "0.97";
+  version = "0.98";
   name = "msitools-${version}";
 
   src = fetchurl {
-    url = "https://ftp.gnome.org/pub/GNOME/sources/msitools/0.97/${name}.tar.xz";
-    sha256 = "0pn6izlgwi4ngpk9jk2n38gcjjpk29nm15aad89bg9z3k9n2hnrs";
+    url = "mirror://gnome/sources/msitools/${version}/${name}.tar.xz";
+    sha256 = "19wb3n3nwkpc6bjr0q3f1znaxsfaqgjbdxxnbx8ic8bb5b49hwac";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [intltool glib libgsf libuuid gcab bzip2];
+  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];
+    license = [ licenses.gpl2 licenses.lgpl21 ];
     platforms = platforms.unix;
   };
 }