vala - Compiler for the GObject type system
svn path=/nixpkgs/trunk/; revision=22546
This commit is contained in:
parent
72f6e78cb0
commit
74b7818349
14
pkgs/development/compilers/vala/default.nix
Normal file
14
pkgs/development/compilers/vala/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -2677,6 +2677,10 @@ let
|
|||||||
inherit fetchurl stdenv perl texinfo;
|
inherit fetchurl stdenv perl texinfo;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vala = import ../development/compilers/vala {
|
||||||
|
inherit stdenv fetchurl yacc flex glib pkgconfig;
|
||||||
|
};
|
||||||
|
|
||||||
visualcpp = (import ../development/compilers/visual-c++ {
|
visualcpp = (import ../development/compilers/visual-c++ {
|
||||||
inherit fetchurl stdenv cabextract;
|
inherit fetchurl stdenv cabextract;
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user