mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
3d98c0bf14
svn path=/nixpkgs/trunk/; revision=8107
9 lines
225 B
Nix
9 lines
225 B
Nix
{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];
|
|
}
|