1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

vala - Compiler for the GObject type system

svn path=/nixpkgs/trunk/; revision=22546
This commit is contained in:
David Guibert 2010-07-09 13:15:40 +00:00
parent 72f6e78cb0
commit 74b7818349
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{stdenv, fetchurl, yacc, flex, pkgconfig, glib}:
stdenv.mkDerivation rec {
name = "vala-0.9.2";
src = fetchurl {
url = "mirror://gnome/sources/vala/0.9/vala-0.9.2.tar.bz2";
sha256 = "079wsdzb7dlp5kfprvjlhdd0d34jshdn3c7qbngr4qq6g4jf5q92";
};
buildInputs = [ yacc flex glib pkgconfig ];
meta = {
description = "Compiler for the GObject type system";
homepage = "http://live.gnome.org/Vala";
};
}

View file

@ -2677,6 +2677,10 @@ let
inherit fetchurl stdenv perl texinfo;
};
vala = import ../development/compilers/vala {
inherit stdenv fetchurl yacc flex glib pkgconfig;
};
visualcpp = (import ../development/compilers/visual-c++ {
inherit fetchurl stdenv cabextract;
});