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

79 lines
2 KiB
Nix
Raw Normal View History

2018-08-08 18:28:43 +00:00
{ stdenv, lib, fetchurl, pkgconfig, flex, bison, libxslt, autoconf, automake, graphviz
2018-03-14 19:15:06 +00:00
, glib, libiconv, libintl, libtool, expat
}:
let
2017-10-03 00:21:00 +00:00
generic = { major, minor, sha256, extraNativeBuildInputs ? [], extraBuildInputs ? [] }:
let
atLeast = lib.versionAtLeast "${major}.${minor}";
in stdenv.mkDerivation rec {
2018-08-08 18:28:43 +00:00
name = "vala-${version}";
version = "${major}.${minor}";
src = fetchurl {
url = "mirror://gnome/sources/vala/${major}/${name}.tar.xz";
inherit sha256;
};
2018-08-08 18:28:43 +00:00
postPatch = ''
patchShebangs tests
'';
2017-11-24 01:14:13 +00:00
outputs = [ "out" "devdoc" ];
nativeBuildInputs = [
pkgconfig flex bison libxslt
] ++ lib.optional (stdenv.isDarwin && (atLeast "0.38")) expat
++ extraNativeBuildInputs;
buildInputs = [
glib libiconv libintl
] ++ lib.optional (atLeast "0.38") graphviz
++ extraBuildInputs;
2018-08-08 18:28:43 +00:00
doCheck = false; # fails, requires dbus daemon
meta = with stdenv.lib; {
description = "Compiler for GObject type system";
2018-03-07 04:47:38 +00:00
homepage = https://wiki.gnome.org/Projects/Vala;
license = licenses.lgpl21Plus;
platforms = platforms.unix;
2018-03-07 04:47:38 +00:00
maintainers = with maintainers; [ antono jtojnar lethalman peterhoeg ];
};
};
in rec {
vala_0_34 = generic {
major = "0.34";
2018-08-29 09:01:10 +00:00
minor = "18";
sha256 = "1lhw3ghns059y5d6pdldy5p4yjwlhcls84k892i6qmbhxg34945q";
};
vala_0_36 = generic {
major = "0.36";
2018-08-29 09:01:30 +00:00
minor = "15";
sha256 = "11lnwjbhiz2l7g6y1f0jb0s81ymgssinlil3alibzcwmzpk175ix";
};
2017-10-03 00:21:00 +00:00
vala_0_38 = generic {
major = "0.38";
2018-08-29 09:01:53 +00:00
minor = "10";
sha256 = "1rdwwqs973qv225v8b5izcgwvqn56jxgr4pa3wxxbliar3aww5sw";
extraNativeBuildInputs = [ autoconf ] ++ lib.optional stdenv.isDarwin libtool;
2017-10-03 00:21:00 +00:00
};
2018-03-13 02:30:15 +00:00
vala_0_40 = generic {
major = "0.40";
minor = "6";
sha256 = "1qjbwhifwwqbdg5zilvnwm4n76g8p7jwqs3fa0biw3rylzqm193d";
2018-03-13 02:30:15 +00:00
};
2018-09-04 13:18:43 +00:00
vala_0_42 = generic {
major = "0.42";
minor = "3";
sha256 = "0zaq9009wqk5aah131m426a2ia0scwpjpl4npf8p7p43wv8kvisz";
};
vala = vala_0_42;
}