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

25 lines
612 B
Nix
Raw Normal View History

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.16.1";
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.16/${name}.tar.xz";
2012-06-25 15:46:26 +02:00
sha256 = "1n708n9ixyy9qrzyv1wf4ybvcclx43ib9ki028wwpvkz6kv8zqlb";
};
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 ];
};
}