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
42 lines
796 B
Nix
42 lines
796 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
autoconf,
|
|
automake,
|
|
glib,
|
|
libtool,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnet";
|
|
version = "2.0.8";
|
|
src = fetchFromGitHub {
|
|
owner = "GNOME";
|
|
repo = "gnet";
|
|
rev = "GNET_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
sha256 = "1cy78kglzi235md964ikvm0rg801bx0yk9ya8zavndjnaarzqq87";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoconf
|
|
automake
|
|
];
|
|
buildInputs = [
|
|
glib
|
|
libtool
|
|
];
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
meta = with lib; {
|
|
description = "Network library, written in C, object-oriented, and built upon GLib";
|
|
homepage = "https://developer.gnome.org/gnet/";
|
|
license = licenses.lgpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|