531e4b80c9
Only acts on one-line dependency lists.
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{stdenv, fetchFromGitHub, autoconf, automake, makeWrapper, pkgconfig
|
|
, gnome3, avahi, gtk3, libnotify, libpulseaudio, xlibsWrapper}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pasystray-${version}";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "christophgysin";
|
|
repo = "pasystray";
|
|
rev = name;
|
|
sha256 = "0k13s7pmz5ks3kli8pwhzd47hcjwv46gd2fgk7i4fbkfwf3z279h";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ autoconf automake makeWrapper
|
|
gnome3.defaultIconTheme
|
|
avahi gtk3 libnotify libpulseaudio xlibsWrapper ];
|
|
|
|
preConfigure = ''
|
|
aclocal
|
|
autoconf
|
|
autoheader
|
|
automake --add-missing
|
|
'';
|
|
|
|
preFixup = ''
|
|
wrapProgram "$out/bin/pasystray" \
|
|
--prefix XDG_DATA_DIRS : "${gnome3.defaultIconTheme}/share:$GSETTINGS_SCHEMAS_PATH"
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "PulseAudio system tray";
|
|
homepage = https://github.com/christophgysin/pasystray;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ exlevan kamilchm ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|