nixpkgs/pkgs/development/libraries/gnome/libIDL/default.nix

19 lines
453 B
Nix
Raw Normal View History

{stdenv, fetchurl, pkgconfig, glib, lex, yacc}:
assert pkgconfig != null && glib != null && lex != null && yacc != null;
derivation {
name = "libIDL-0.8.2";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.gnome.org/pub/gnome/sources/libIDL/0.8/libIDL-0.8.2.tar.bz2;
md5 = "a75d2dbf3a3c66b567047c94245f8b82";
};
stdenv = stdenv;
pkgconfig = pkgconfig;
glib = glib;
lex = lex;
yacc = yacc;
}