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

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

stdenv.mkDerivation {
  name = "libIDL-0.8.2";
  src = fetchurl {
    url = ftp://ftp.gnome.org/pub/gnome/sources/libIDL/0.8/libIDL-0.8.2.tar.bz2;
    md5 = "a75d2dbf3a3c66b567047c94245f8b82";
  };
  buildInputs = [pkgconfig glib lex yacc];
}