summary refs log tree commit diff
path: root/pkgs/desktops/gnome/libIDL.nix
blob: 2a2dd49e2d1673f746d317e6410119c12a96cbe0 (plain) (blame)
1
2
3
4
5
6
7
8
{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];
}