pa-applet: add pulseaudio applet
This commit is contained in:
parent
c5d8c54e5c
commit
7cc21354d5
29
pkgs/tools/audio/pa-applet/default.nix
Normal file
29
pkgs/tools/audio/pa-applet/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchgit, pulseaudio, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, xf86inputevdev }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pa-applet";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/fernandotcl/pa-applet.git";
|
||||
rev = "005f192df9ba6d2e6491f9aac650be42906b135a";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
gtk3 pulseaudio glibc pkgconfig automake autoconf libnotify libX11 xf86inputevdev
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
./autogen.sh
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://projects.gnome.org/NetworkManager/;
|
||||
description = "";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ iElectric ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -1262,6 +1262,8 @@ let
|
||||
|
||||
networkmanagerapplet = newScope gnome ../tools/networking/network-manager-applet { };
|
||||
|
||||
pa_applet = callPackage ../tools/audio/pa-applet { };
|
||||
|
||||
nilfs_utils = callPackage ../tools/filesystems/nilfs-utils {};
|
||||
|
||||
nlopt = callPackage ../development/libraries/nlopt {};
|
||||
|
Loading…
Reference in New Issue
Block a user