Add vala 0.28

This commit is contained in:
Luca Bruno 2015-05-02 14:44:34 +02:00
parent f69cfbfa15
commit bb9ee2ab55
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, fetchurl, pkgconfig, flex, bison, libxslt
, glib, libiconv, libintlOrEmpty
}:
let
major = "0.28";
minor = "0";
sha256 = "0zwpzhkhfk3piya14m7p2hl2vaabahprphppfm46ci91z39kp7hd";
in
stdenv.mkDerivation rec {
name = "vala-${major}.${minor}";
meta = {
description = "Compiler for GObject type system";
homepage = "http://live.gnome.org/Vala";
license = stdenv.lib.licenses.lgpl21Plus;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ antono lethalman ];
};
src = fetchurl {
url = "mirror://gnome/sources/vala/${major}/${name}.tar.xz";
inherit sha256;
};
nativeBuildInputs = [ pkgconfig flex bison libxslt ];
buildInputs = [ glib libiconv ]
++ libintlOrEmpty;
}

View file

@ -4477,6 +4477,8 @@ let
vala_0_26 = callPackage ../development/compilers/vala/0.26.nix { };
vala_0_28 = callPackage ../development/compilers/vala/0.28.nix { };
visualcpp = callPackage ../development/compilers/visual-c++ { };
vs90wrapper = callPackage ../development/compilers/vs90wrapper { };