nixpkgs/pkgs/development/libraries/gnome/libIDL/default.nix
Eelco Dolstra 776554d9e1 * Fixed and/or updated some more components. The number of explicit
builders is dropping steadily.

svn path=/nixpkgs/trunk/; revision=900
2004-04-01 19:11:59 +00:00

13 lines
366 B
Nix

{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];
}