about summary refs log tree commit diff
path: root/pkgs/development/compilers/vala/default.nix
blob: 0aaab91cd81e29968de0bd6957e2bcbc42b522a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:

stdenv.mkDerivation rec {
  name = "vala-0.14.2";

  src = fetchurl {
    url = mirror://gnome/sources/vala/0.14/vala-0.14.2.tar.xz;
    sha256 = "1l5kllw9vpwv24lzv9fp64l3sad46wpxgvsgryrwlrjg91w6jzl0";
  };

  buildNativeInputs = [ yacc flex pkgconfig xz ];

  buildInputs = [ glib ];

  meta = {
    description = "Compiler for the GObject type system";
    homepage = "http://live.gnome.org/Vala";
  };
}