2012-06-25 15:46:26 +02:00
|
|
|
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-06-25 18:01:51 +02:00
|
|
|
|
|
|
|
version = "0.15.2";
|
|
|
|
name = "vala-${version}";
|
2012-06-25 15:46:26 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-06-25 18:01:51 +02:00
|
|
|
url = "mirror://gnome/sources/vala/0.15/${name}.tar.xz";
|
2012-06-25 15:46:26 +02:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|