nixpkgs/pkgs/desktops/gnome-2/platform/libIDL/default.nix
Eelco Dolstra ab3eeabfed Rename buildNativeInputs -> nativeBuildInputs
Likewise for propagatedBuildNativeInputs, etc.  "buildNativeInputs"
sounds like an imperative rather than a noun phrase.
2012-12-28 19:20:09 +01:00

16 lines
373 B
Nix

{stdenv, fetchurl_gnome, flex, bison, pkgconfig, glib, gettext}:
stdenv.mkDerivation rec {
name = src.pkgname;
src = fetchurl_gnome {
project = "libIDL";
major = "0"; minor = "8"; patchlevel = "14";
sha256 = "08129my8s9fbrk0vqvnmx6ph4nid744g5vbwphzkaik51664vln5";
};
buildInputs = [ glib gettext ];
nativeBuildInputs = [ flex bison pkgconfig ];
}