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
34 lines
605 B
Nix
34 lines
605 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
pkg-config,
|
|
glib,
|
|
dbus,
|
|
dbus-glib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "eggdbus";
|
|
version = "0.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://hal.freedesktop.org/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "118hj63ac65zlg71kydv4607qcg1qpdlql4kvhnwnnhar421jnq4";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
glib
|
|
dbus
|
|
dbus-glib
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://hal.freedesktop.org/releases/";
|
|
description = "D-Bus bindings for GObject";
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl2;
|
|
};
|
|
}
|