vala_0_32: init at 0.32.0
This commit is contained in:
parent
28ddc8c043
commit
366d98497f
30
pkgs/development/compilers/vala/0.32.nix
Normal file
30
pkgs/development/compilers/vala/0.32.nix
Normal 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;
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user