2012-02-23 20:59:22 +01:00
|
|
|
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
|
2010-07-09 15:15:40 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-02-23 20:59:22 +01:00
|
|
|
name = "vala-0.14.2";
|
|
|
|
|
2010-07-09 15:15:40 +02:00
|
|
|
src = fetchurl {
|
2012-02-23 20:59:22 +01:00
|
|
|
url = mirror://gnome/sources/vala/0.14/vala-0.14.2.tar.xz;
|
|
|
|
sha256 = "1l5kllw9vpwv24lzv9fp64l3sad46wpxgvsgryrwlrjg91w6jzl0";
|
2010-07-09 15:15:40 +02:00
|
|
|
};
|
2012-02-23 20:59:22 +01:00
|
|
|
|
|
|
|
buildNativeInputs = [ yacc flex pkgconfig xz ];
|
|
|
|
|
|
|
|
buildInputs = [ glib ];
|
|
|
|
|
2010-07-09 15:15:40 +02:00
|
|
|
meta = {
|
|
|
|
description = "Compiler for the GObject type system";
|
|
|
|
homepage = "http://live.gnome.org/Vala";
|
|
|
|
};
|
|
|
|
}
|