1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-26 07:31:20 +00:00
nixpkgs/pkgs/desktops/gnome/libIDL.nix

9 lines
225 B
Nix
Raw Normal View History

{input, stdenv, fetchurl, pkgconfig, glib, lex, yacc}:
assert pkgconfig != null && glib != null && lex != null && yacc != null;
stdenv.mkDerivation {
inherit (input) name src;
buildInputs = [pkgconfig glib lex yacc];
}