lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 15.09-beta 22 lines 637 B view raw
1{stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, glib, libtool }: 2 3stdenv.mkDerivation { 4 name = "gnet-2.0.8"; 5 src = fetchFromGitHub { 6 owner = "GNOME"; 7 repo = "gnet"; 8 rev = "GNET_2_0_8"; 9 sha256 = "1cy78kglzi235md964ikvm0rg801bx0yk9ya8zavndjnaarzqq87"; 10 }; 11 12 buildInputs = [ pkgconfig autoconf automake glib libtool ]; 13 14 preConfigure = "./autogen.sh"; 15 16 meta = with stdenv.lib; { 17 description = "A network library, written in C, object-oriented, and built upon GLib"; 18 homepage = https://developer.gnome.org/gnet/; 19 platforms = platforms.linux; 20 maintainers = with maintainers; [ pSub ]; 21 }; 22}