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

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

stdenv.mkDerivation {
  name = "gnet-2.0.7";
  src = fetchurl {
    url = http://www.gnetlibrary.org/src/gnet-2.0.7.tar.gz;
    md5 = "3a7a40411775688fe4c42141ab007048";
  };
  buildInputs = [pkgconfig glib];
}