Use fetchzip to retrieve new pasystray.

This commit is contained in:
Michael Alan Dorman 2015-05-25 08:13:21 -04:00
parent bc1b8cb33a
commit e81c6bd654
1 changed files with 3 additions and 3 deletions

View File

@ -1,15 +1,15 @@
{stdenv, fetchurl, unzip, autoconf, automake, makeWrapper, pkgconfig
{stdenv, fetchzip, autoconf, automake, makeWrapper, pkgconfig
, gnome3, avahi, gtk3, libnotify, pulseaudio, x11}:
stdenv.mkDerivation rec {
name = "pasystray-0.5.2";
src = fetchurl {
src = fetchzip {
url = "https://github.com/christophgysin/pasystray/archive/${name}.zip";
sha256 = "084jld5zk89h4akll73bwhfav6mpg55zmdd5kvlg396rqi9lqkj4";
};
buildInputs = [ unzip autoconf automake makeWrapper pkgconfig
buildInputs = [ autoconf automake makeWrapper pkgconfig
gnome3.defaultIconTheme
avahi gtk3 libnotify pulseaudio x11 ];