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)
This commit is contained in:
Joachim Fasting 2015-04-28 11:05:58 +02:00
parent ed46b22db0
commit 0e7e91030f

View File

@ -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 ];