Vala 14, 15, 16, 17. Default is 17 now

This commit is contained in:
Antono Vasiljev 2012-06-25 16:46:26 +03:00
parent 484c13cce1
commit e6e6301c5f
5 changed files with 79 additions and 4 deletions

View file

@ -0,0 +1,22 @@
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
stdenv.mkDerivation rec {
name = "vala-0.14.2";
src = fetchurl {
url = mirror://gnome/sources/vala/0.14/vala-0.14.2.tar.xz;
sha256 = "1l5kllw9vpwv24lzv9fp64l3sad46wpxgvsgryrwlrjg91w6jzl0";
};
buildNativeInputs = [ yacc flex pkgconfig xz ];
buildInputs = [ glib ];
meta = {
description = "Compiler for the GObject type system";
homepage = "http://live.gnome.org/Vala";
license = "free-copyleft";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.antono ];
};
}

View file

@ -0,0 +1,22 @@
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
stdenv.mkDerivation rec {
name = "vala-0.15.2";
src = fetchurl {
url = mirror://gnome/sources/vala/0.15/vala-0.15.2.tar.xz;
sha256 = "0g71zq6dpqrw2f40wfzdf18fdw41ymr17laqniy2kr622hkxdi8w";
};
buildNativeInputs = [ yacc flex pkgconfig xz ];
buildInputs = [ glib ];
meta = {
description = "Compiler for the GObject type system";
homepage = "http://live.gnome.org/Vala";
license = "free-copyleft";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.antono ];
};
}

View file

@ -0,0 +1,22 @@
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
stdenv.mkDerivation rec {
name = "vala-0.16.1";
src = fetchurl {
url = mirror://gnome/sources/vala/0.16/vala-0.16.1.tar.xz;
sha256 = "1n708n9ixyy9qrzyv1wf4ybvcclx43ib9ki028wwpvkz6kv8zqlb";
};
buildNativeInputs = [ yacc flex pkgconfig xz ];
buildInputs = [ glib ];
meta = {
description = "Compiler for the GObject type system";
homepage = "http://live.gnome.org/Vala";
license = "free-copyleft";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.antono ];
};
}

View file

@ -1,11 +1,11 @@
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
stdenv.mkDerivation rec {
name = "vala-0.14.2";
name = "vala-0.17.2";
src = fetchurl {
url = mirror://gnome/sources/vala/0.14/vala-0.14.2.tar.xz;
sha256 = "1l5kllw9vpwv24lzv9fp64l3sad46wpxgvsgryrwlrjg91w6jzl0";
url = mirror://gnome/sources/vala/0.17/vala-0.17.2.tar.xz;
sha256 = "09i2s0dwmrk147ind2dx7nq845g12fp6fsjqrphhrr0dbi0zzgh3";
};
buildNativeInputs = [ yacc flex pkgconfig xz ];
@ -15,5 +15,8 @@ stdenv.mkDerivation rec {
meta = {
description = "Compiler for the GObject type system";
homepage = "http://live.gnome.org/Vala";
license = "free-copyleft";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.antono ];
};
}

View file

@ -2500,7 +2500,13 @@ let
urweb = callPackage ../development/compilers/urweb { };
vala = callPackage ../development/compilers/vala { };
vala14 = callPackage ../development/compilers/vala/14.2.nix { };
vala15 = callPackage ../development/compilers/vala/15.2.nix { };
vala16 = callPackage ../development/compilers/vala/16.1.nix { };
vala = callPackage ../development/compilers/vala/default.nix { };
visualcpp = callPackage ../development/compilers/visual-c++ { };