nixpkgs/pkgs/development/compilers/vala/default.nix
aszlig c22d51d6f1
vala: Update to new upstream version 1.18.1.
Signed-off-by: aszlig <aszlig@redmoonstudios.org>
2012-12-12 05:44:36 +01:00

25 lines
612 B
Nix

{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
stdenv.mkDerivation rec {
version = "0.18.1";
name = "vala-${version}";
src = fetchurl {
url = "mirror://gnome/sources/vala/0.18/${name}.tar.xz";
sha256 = "0cnaplhw1gf6m5xk62h01fhx0yisvjzr7bxc2g7s57rzl262wpkz";
};
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 ];
};
}