nixpkgs/pkgs/development/compilers/vala/15.2.nix
2012-06-25 16:46:26 +03:00

23 lines
587 B
Nix

{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
stdenv.mkDerivation rec {
name = "vala-0.15.2";
src = fetchurl {
url = mirror://gnome/sources/vala/0.15/vala-0.15.2.tar.xz;
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 ];
};
}