python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / audio / pa-applet / default.nix
blob3d881717e792ee315cfc0f1851c2750934960de6
1 { lib, stdenv, fetchFromGitHub, libpulseaudio, pkg-config, gtk3, glibc, autoconf, automake, libnotify, libX11, xf86inputevdev }:
3 stdenv.mkDerivation {
4   pname = "pa-applet";
5   version = "unstable-2012-04-11";
7   src = fetchFromGitHub {
8     owner = "fernandotcl";
9     repo = "pa-applet";
10     rev = "005f192df9ba6d2e6491f9aac650be42906b135a";
11     sha256 = "sha256-ihvZFXHgr5YeqMKmVY/GB86segUkQ9BYqJYfE3PTgog=";
12   };
14   nativeBuildInputs = [ pkg-config autoconf automake ];
15   buildInputs = [
16     gtk3 libpulseaudio glibc libnotify libX11 xf86inputevdev
17   ];
19   preConfigure = ''
20     ./autogen.sh
21   '';
23   # work around a problem related to gtk3 updates
24   NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
26   postInstall = "";
28   meta = with lib; {
29     description = "";
30     license = licenses.gpl2;
31     maintainers = with maintainers; [ domenkozar ];
32     platforms = platforms.linux;
33   };