about summary refs log tree commit diff
path: root/pkgs/development/libraries/gnet/default.nix
blob: ae6aadd42b28cccd16c1105e3090e1a08212493e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl, pkgconfig, glib}:

assert pkgconfig != null && glib != null;

stdenv.mkDerivation {
  name = "gnet-2.0.4";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.gnetlibrary.org/src/gnet-2.0.4.tar.gz;
    md5 = "b43e728391143214e2cfd0b835b6fd2a";
  };
  pkgconfig = pkgconfig;
  glib = glib;
}