2015-05-27 20:42:15 +01:00
|
|
|
{ stdenv, fetchgit, libpulseaudio, pkgconfig, gtk3, glibc, autoconf, automake, libnotify, libX11, xf86inputevdev }:
|
2013-05-05 22:09:46 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-06-04 18:22:36 +01:00
|
|
|
name = "pa-applet-2012-04-11";
|
2013-05-05 22:09:46 +01:00
|
|
|
|
|
|
|
src = fetchgit {
|
2013-05-13 09:09:13 +01:00
|
|
|
url = "git://github.com/fernandotcl/pa-applet.git";
|
2013-05-05 22:09:46 +01:00
|
|
|
rev = "005f192df9ba6d2e6491f9aac650be42906b135a";
|
2013-05-13 09:09:13 +01:00
|
|
|
sha256 = "1rqnp6nzgb3z7c6pvd5qzsxprwrzif8cfx6i7xp3f0x5s7n2dqkb";
|
2013-05-05 22:09:46 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2015-05-27 20:42:15 +01:00
|
|
|
gtk3 libpulseaudio glibc pkgconfig automake autoconf libnotify libX11 xf86inputevdev
|
2013-05-05 22:09:46 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
'';
|
|
|
|
|
2013-12-10 12:41:20 +00:00
|
|
|
# work around a problem related to gtk3 updates
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
|
|
|
|
|
2013-05-05 22:09:46 +01:00
|
|
|
postInstall = ''
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "";
|
|
|
|
license = licenses.gpl2;
|
2016-05-17 12:57:28 +01:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2013-05-05 22:09:46 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|