mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
gnet: update from 2.0.7 to 2.0.8
This commit is contained in:
parent
55d59eefb3
commit
bab97e1687
@ -1,12 +1,22 @@
|
|||||||
{stdenv, fetchurl, pkgconfig, glib}:
|
{stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, glib, libtool }:
|
||||||
|
|
||||||
assert pkgconfig != null && glib != null;
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "gnet-2.0.7";
|
name = "gnet-2.0.8";
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = http://www.gnetlibrary.org/src/gnet-2.0.7.tar.gz;
|
owner = "GNOME";
|
||||||
md5 = "3a7a40411775688fe4c42141ab007048";
|
repo = "gnet";
|
||||||
|
rev = "GNET_2_0_8";
|
||||||
|
sha256 = "1cy78kglzi235md964ikvm0rg801bx0yk9ya8zavndjnaarzqq87";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig autoconf automake glib libtool ];
|
||||||
|
|
||||||
|
preConfigure = "./autogen.sh";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A network library, written in C, object-oriented, and built upon GLib";
|
||||||
|
homepage = https://developer.gnome.org/gnet/;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
};
|
};
|
||||||
buildInputs = [pkgconfig glib];
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user