nixpkgs/pkgs/tools/audio/pasystray/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoconf, automake, makeWrapper, pkgconfig
, gnome3, avahi, gtk3, libappindicator-gtk3, libnotify, libpulseaudio
, xlibsWrapper
}:
2014-11-07 12:01:11 +00:00
stdenv.mkDerivation rec {
2017-01-24 06:18:15 +00:00
name = "pasystray-${version}";
version = "0.6.0";
2014-11-07 12:01:11 +00:00
2015-05-25 21:12:38 +00:00
src = fetchFromGitHub {
owner = "christophgysin";
repo = "pasystray";
2017-01-24 06:18:15 +00:00
rev = name;
sha256 = "0k13s7pmz5ks3kli8pwhzd47hcjwv46gd2fgk7i4fbkfwf3z279h";
2014-11-07 12:01:11 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
autoconf automake makeWrapper
gnome3.defaultIconTheme
avahi gtk3 libappindicator-gtk3 libnotify libpulseaudio xlibsWrapper
];
2014-11-07 12:01:11 +00:00
preConfigure = ''
aclocal
autoconf
autoheader
automake --add-missing
'';
preFixup = ''
wrapProgram "$out/bin/pasystray" \
2015-05-19 12:44:27 +00: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";
homepage = https://github.com/christophgysin/pasystray;
2014-11-07 12:44:40 +00:00
license = licenses.lgpl21Plus;
2017-01-24 06:18:15 +00:00
maintainers = with maintainers; [ exlevan kamilchm ];
platforms = platforms.linux;
2014-11-07 12:01:11 +00:00
};
}