about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-12-17 11:04:10 -0800
committerRenaud <c0bw3b@users.noreply.github.com>2018-12-17 20:04:10 +0100
commitace1f064e865fc9e8946da7635ad3229c866ea2c (patch)
tree318b20370069f4df76e85e30be92dd995b04a5b7 /pkgs/applications/graphics
parent8c8c7a6cb9cc5258a91857069883eb374fe08230 (diff)
downloadnixlib-ace1f064e865fc9e8946da7635ad3229c866ea2c.tar
nixlib-ace1f064e865fc9e8946da7635ad3229c866ea2c.tar.gz
nixlib-ace1f064e865fc9e8946da7635ad3229c866ea2c.tar.bz2
nixlib-ace1f064e865fc9e8946da7635ad3229c866ea2c.tar.lz
nixlib-ace1f064e865fc9e8946da7635ad3229c866ea2c.tar.xz
nixlib-ace1f064e865fc9e8946da7635ad3229c866ea2c.tar.zst
nixlib-ace1f064e865fc9e8946da7635ad3229c866ea2c.zip
glabels: 3.4.0 -> 3.4.1
* glabels: 3.4.0 -> 3.4.1 (#52285)

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

* glabels: fetch from Gnome mirrors

+ corrected licensing - see https://github.com/jimevins/glabels/blob/glabels-3_4_1/COPYING.README_FIRST
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/glabels/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/graphics/glabels/default.nix b/pkgs/applications/graphics/glabels/default.nix
index df8ebee020c9..cf4ecf15523a 100644
--- a/pkgs/applications/graphics/glabels/default.nix
+++ b/pkgs/applications/graphics/glabels/default.nix
@@ -5,11 +5,11 @@
 
 stdenv.mkDerivation rec {
   name = "glabels-${version}";
-  version = "3.4.0";
+  version = "3.4.1";
 
   src = fetchurl {
-    url = "https://ftp.gnome.org/pub/GNOME/sources/glabels/3.4/glabels-3.4.0.tar.xz";
-    sha256 = "04345crf5yrhq6rlrymz630rxnm8yw41vx04hb6xn2nkjn9hf3nl";
+    url = "mirror://gnome/sources/glabels/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
+    sha256 = "0f2rki8i27pkd9r0gz03cdl1g4vnmvp0j49nhxqn275vi8lmgr0q";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig makeWrapper intltool ];
@@ -25,11 +25,11 @@ stdenv.mkDerivation rec {
       --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Create labels and business cards";
-    homepage = http://glabels.org/;
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.unix;
-    maintainers = [ stdenv.lib.maintainers.nico202 ];
+    homepage = https://glabels.org/;
+    license = with licenses; [ gpl3Plus lgpl3Plus ];
+    platforms = platforms.unix;
+    maintainers = [ maintainers.nico202 ];
   };
 }