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

stdenv.mkDerivation rec {

  version = "0.16.1";
  name = "vala-${version}";

  src = fetchurl {
    url = "mirror://gnome/sources/vala/0.16/${name}.tar.xz";
    sha256 = "1n708n9ixyy9qrzyv1wf4ybvcclx43ib9ki028wwpvkz6kv8zqlb";
  };

  nativeBuildInputs = [ 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 ];
  };
}