nixpkgs/pkgs/development/compilers/vala/default.nix

25 lines
612 B
Nix
Raw Normal View History

{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
stdenv.mkDerivation rec {
2012-06-25 18:01:51 +02:00
version = "0.17.2";
name = "vala-${version}";
src = fetchurl {
2012-06-25 18:01:51 +02:00
url = "mirror://gnome/sources/vala/0.17/${name}.tar.xz";
2012-06-25 15:46:26 +02:00
sha256 = "09i2s0dwmrk147ind2dx7nq845g12fp6fsjqrphhrr0dbi0zzgh3";
};
buildNativeInputs = [ yacc flex pkgconfig xz ];
buildInputs = [ glib ];
meta = {
description = "Compiler for the GObject type system";
homepage = "http://live.gnome.org/Vala";
2012-06-25 15:46:26 +02:00
license = "free-copyleft";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.antono ];
};
}