summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@fastmail.fm>2015-04-28 11:05:58 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2015-04-28 11:53:02 +0200
commit0e7e91030f2833471d6ab50a5827c0c4b9600daa (patch)
tree92a5558c04f8d4a3993aadeb1f08c406215d759f /pkgs
parented46b22db0fbc2d51512f91f018711ed05ed7143 (diff)
downloadnixlib-0e7e91030f2833471d6ab50a5827c0c4b9600daa.tar
nixlib-0e7e91030f2833471d6ab50a5827c0c4b9600daa.tar.gz
nixlib-0e7e91030f2833471d6ab50a5827c0c4b9600daa.tar.bz2
nixlib-0e7e91030f2833471d6ab50a5827c0c4b9600daa.tar.lz
nixlib-0e7e91030f2833471d6ab50a5827c0c4b9600daa.tar.xz
nixlib-0e7e91030f2833471d6ab50a5827c0c4b9600daa.tar.zst
nixlib-0e7e91030f2833471d6ab50a5827c0c4b9600daa.zip
rep-gtk: git -> 0.90.8.2
This is the most recent release which has a tarball.
It is strictly older than the GIT revision previously
pointed to, but the delta is insignificant (fixes to
debian helper scripts, updating NEWS & fixing a typo in
the changelog)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/rep-gtk/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/libraries/rep-gtk/default.nix b/pkgs/development/libraries/rep-gtk/default.nix
index 070baf7ae794..888a81a390ed 100644
--- a/pkgs/development/libraries/rep-gtk/default.nix
+++ b/pkgs/development/libraries/rep-gtk/default.nix
@@ -1,14 +1,14 @@
-{ stdenv, fetchgit, pkgconfig, autoreconfHook, librep, gtk2 }:
+{ stdenv, fetchurl, pkgconfig, autoreconfHook, librep, gtk2 }:
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
 
-  name = "rep-gtk-git-2015-02-15";
+  name = "rep-gtk-${version}";
+  version = "0.90.8.2";
 
-  src = fetchgit {
-    url = "https://github.com/SawfishWM/rep-gtk.git";
-    rev = "74ac3504f2bbbcc9ded005ab97cbf94cdc47924d";
-    sha256 = "edb47c5b6d09201d16a8f0616d18690ff0a37dca56d31c6e635b286bd0b6a031";
+  src = fetchurl {
+    url = "https://github.com/SawfishWM/rep-gtk/archive/${name}.tar.gz";
+    sha256 = "0pkpp7pj22c8hkyyivr9qw6q08ad42alynsf54ixdy6p9wn4qs1r";
   };
 
   buildInputs = [ pkgconfig autoreconfHook ];