nixpkgs/pkgs/tools/audio/pa-applet/default.nix

33 lines
865 B
Nix
Raw Normal View History

{ lib, stdenv, fetchgit, libpulseaudio, pkg-config, gtk3, glibc, autoconf, automake, libnotify, libX11, xf86inputevdev }:
2013-05-05 21:09:46 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2015-06-04 17:22:36 +00:00
name = "pa-applet-2012-04-11";
2013-05-05 21:09:46 +00:00
src = fetchgit {
2013-05-13 08:09:13 +00:00
url = "git://github.com/fernandotcl/pa-applet.git";
2013-05-05 21:09:46 +00:00
rev = "005f192df9ba6d2e6491f9aac650be42906b135a";
sha256 = "1242sdri67wnm1cd0hr40mxarkh7qs7mb9n2m0g9dbz0f4axj6wa";
2013-05-05 21:09:46 +00:00
};
nativeBuildInputs = [ pkg-config ];
2013-05-05 21:09:46 +00:00
buildInputs = [
gtk3 libpulseaudio glibc automake autoconf libnotify libX11 xf86inputevdev
2013-05-05 21:09:46 +00:00
];
preConfigure = ''
./autogen.sh
'';
# work around a problem related to gtk3 updates
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
postInstall = "";
2013-05-05 21:09:46 +00:00
meta = with lib; {
2013-05-05 21:09:46 +00:00
description = "";
license = licenses.gpl2;
maintainers = with maintainers; [ domenkozar ];
2013-05-05 21:09:46 +00:00
platforms = platforms.linux;
};
}