Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
965 B
Nix
58 lines
965 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
libpulseaudio,
|
|
pkg-config,
|
|
gtk3,
|
|
glibc,
|
|
autoconf,
|
|
automake,
|
|
libnotify,
|
|
libX11,
|
|
xf86inputevdev,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "pa-applet";
|
|
version = "0-unstable-2012-04-11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fernandotcl";
|
|
repo = "pa-applet";
|
|
rev = "005f192df9ba6d2e6491f9aac650be42906b135a";
|
|
sha256 = "sha256-ihvZFXHgr5YeqMKmVY/GB86segUkQ9BYqJYfE3PTgog=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoconf
|
|
automake
|
|
];
|
|
buildInputs = [
|
|
gtk3
|
|
libpulseaudio
|
|
glibc
|
|
libnotify
|
|
libX11
|
|
xf86inputevdev
|
|
];
|
|
|
|
preConfigure = ''
|
|
./autogen.sh
|
|
'';
|
|
|
|
# work around a problem related to gtk3 updates
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=deprecated-declarations";
|
|
|
|
postInstall = "";
|
|
|
|
meta = with lib; {
|
|
description = "";
|
|
mainProgram = "pa-applet";
|
|
license = licenses.bsd2;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|