vala_0_32: init at 0.32.0

This commit is contained in:
Damien Cassou 2016-04-02 10:36:47 +02:00 committed by Luca Bruno
parent 28ddc8c043
commit 366d98497f
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.32";
minor = "0";
sha256 = "0vpvq403vdd25irvgk7zibz3nw4x4i17m0dgnns8j1q4vr7am8h7";
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

@ -5386,6 +5386,8 @@ in
vala_0_28 = callPackage ../development/compilers/vala/0.28.nix { };
vala_0_32 = callPackage ../development/compilers/vala/0.32.nix { };
vs90wrapper = callPackage ../development/compilers/vs90wrapper { };
webdsl = callPackage ../development/compilers/webdsl { };