summary refs log tree commit diff
path: root/pkgs/development/libraries/gnet/default.nix
blob: debf3eb592644bdf7d168a0c6db6ba8da77cf4db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{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 ];
  buildInputs = [ autoconf automake glib libtool ];

  preConfigure = "./autogen.sh";

  meta = with lib; {
    description = "A 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 ];
  };
}