1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/audio/pasystray/default.nix

36 lines
1,010 B
Nix
Raw Normal View History

2015-05-19 13:44:27 +01:00
{stdenv, fetchurl, unzip, autoconf, automake, makeWrapper, pkgconfig
2015-05-19 19:08:16 +01:00
, gnome3, avahi, gtk3, libnotify, pulseaudio, x11}:
2014-11-07 12:01:11 +00:00
stdenv.mkDerivation rec {
name = "pasystray-0.4.0";
src = fetchurl {
url = "https://github.com/christophgysin/pasystray/archive/${name}.zip";
sha256 = "1gpb7yqcxqglv50iqbkg2lg3r0z07jm4ir2zqmvns6sgddks590w";
};
2015-05-19 13:44:27 +01:00
buildInputs = [ unzip autoconf automake makeWrapper pkgconfig
gnome3.defaultIconTheme
avahi gtk3 libnotify pulseaudio x11 ];
2014-11-07 12:01:11 +00:00
preConfigure = ''
aclocal
autoconf
autoheader
automake --add-missing
'';
preFixup = ''
wrapProgram "$out/bin/pasystray" \
2015-05-19 13:44:27 +01:00
--prefix XDG_DATA_DIRS : "${gnome3.defaultIconTheme}/share:$GSETTINGS_SCHEMAS_PATH"
'';
2014-11-07 12:44:40 +00:00
meta = with stdenv.lib; {
2014-11-07 12:01:11 +00:00
description = "PulseAudio system tray";
2014-11-07 15:51:27 +00:00
homepage = "https://github.com/christophgysin/pasystray";
2014-11-07 12:44:40 +00:00
license = licenses.lgpl21Plus;
maintainers = [ maintainers.exlevan ];
platfoms = platforms.linux;
2014-11-07 12:01:11 +00:00
};
}