summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Ried <ried@mytum.de>2016-09-22 15:59:39 +0200
committerAlexander Ried <ried@mytum.de>2016-10-15 20:32:10 +0200
commit8afdb9b0f58c8aaf65cc2b5a8272586ba2507a33 (patch)
tree095fc289c56a8ca8f0d3455815cec9be24450147
parented889ba8aeb36c94f870b364558873d2f12e1b1c (diff)
downloadnixlib-8afdb9b0f58c8aaf65cc2b5a8272586ba2507a33.tar
nixlib-8afdb9b0f58c8aaf65cc2b5a8272586ba2507a33.tar.gz
nixlib-8afdb9b0f58c8aaf65cc2b5a8272586ba2507a33.tar.bz2
nixlib-8afdb9b0f58c8aaf65cc2b5a8272586ba2507a33.tar.lz
nixlib-8afdb9b0f58c8aaf65cc2b5a8272586ba2507a33.tar.xz
nixlib-8afdb9b0f58c8aaf65cc2b5a8272586ba2507a33.tar.zst
nixlib-8afdb9b0f58c8aaf65cc2b5a8272586ba2507a33.zip
libgtop: 2.32.0 -> 2.34.1
-rw-r--r--pkgs/development/libraries/libgtop/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/libraries/libgtop/default.nix b/pkgs/development/libraries/libgtop/default.nix
index ac5b4dec07ba..ee4f9401bbb7 100644
--- a/pkgs/development/libraries/libgtop/default.nix
+++ b/pkgs/development/libraries/libgtop/default.nix
@@ -1,10 +1,12 @@
 { stdenv, fetchurl, glib, pkgconfig, perl, intltool, gobjectIntrospection }:
-stdenv.mkDerivation {
-  name = "libgtop-2.32.0";
+stdenv.mkDerivation rec {
+  name = "libgtop-${version}";
+  major = "2.34";
+  version = "${major}.1";
 
   src = fetchurl {
-    url = mirror://gnome/sources/libgtop/2.32/libgtop-2.32.0.tar.xz;
-    sha256 = "13hpml2vfm23816qggr5fvxj75ndb1dq4rgmi7ik6azj69ij8hw4";
+    url = "mirror://gnome/sources/libgtop/${major}/${name}.tar.xz";
+    sha256 = "c89978a76662b18d392edbe0d1b794f5a9a399a5ccf22a02d5b9e28b5ed609e2";
   };
 
   propagatedBuildInputs = [ glib ];