summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/libIDL/default.nix
blob: 9d6ad61621d34b4ebaf3d1ffe29557584e7240a6 (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 = http://catamaran.labs.cs.uu.nl/dist/tarballs/libIDL-0.8.2.tar.bz2;
    md5 = "a75d2dbf3a3c66b567047c94245f8b82";
  };
  buildInputs = [pkgconfig glib lex yacc];
}