nixpkgs/pkgs/development/libraries/gnome/libIDL/default.nix
Eelco Dolstra e42507d182 * Move tarballs to catamaran so that we are no longer dependent on a
gazillion different servers.  Resurrected some 25 missing files.

svn path=/nixpkgs/trunk/; revision=2237
2005-02-15 14:44:19 +00:00

13 lines
362 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 = http://catamaran.labs.cs.uu.nl/dist/tarballs/libIDL-0.8.2.tar.bz2;
md5 = "a75d2dbf3a3c66b567047c94245f8b82";
};
buildInputs = [pkgconfig glib lex yacc];
}