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

stdenv.mkDerivation rec {
  baseName = "vala";
  baseVersion = "0.11";
  revision = "2";
  version = "${baseVersion}.${revision}";
  name = "${baseName}-${version}";
  src = fetchurl {
    url = "mirror://gnome/sources/${baseName}/${baseVersion}/${name}.tar.bz2";
    sha256 = "489b60a49a03c8915b513a722ca08986c18ae0dc6489cce6bbb8415670612046";
  };
  buildInputs = [ yacc flex glib pkgconfig ];
  meta = {
    description = "Compiler for the GObject type system";
    homepage = "http://live.gnome.org/Vala";
  };
}