about summary refs log tree commit diff
path: root/pkgs/development/compilers/vala
diff options
context:
space:
mode:
authorDamien Cassou <damien@cassou.me>2016-04-02 10:36:47 +0200
committerLuca Bruno <lethalman88@gmail.com>2016-06-06 13:59:31 +0200
commit366d98497ff0764526bd4aec2c491e49ab1eb51e (patch)
tree287c3e1f81c069e16b2a12c958f39c75c4a1f151 /pkgs/development/compilers/vala
parent28ddc8c043762cf75855c00e55d70822d1912bdb (diff)
downloadnixlib-366d98497ff0764526bd4aec2c491e49ab1eb51e.tar
nixlib-366d98497ff0764526bd4aec2c491e49ab1eb51e.tar.gz
nixlib-366d98497ff0764526bd4aec2c491e49ab1eb51e.tar.bz2
nixlib-366d98497ff0764526bd4aec2c491e49ab1eb51e.tar.lz
nixlib-366d98497ff0764526bd4aec2c491e49ab1eb51e.tar.xz
nixlib-366d98497ff0764526bd4aec2c491e49ab1eb51e.tar.zst
nixlib-366d98497ff0764526bd4aec2c491e49ab1eb51e.zip
vala_0_32: init at 0.32.0
Diffstat (limited to 'pkgs/development/compilers/vala')
-rw-r--r--pkgs/development/compilers/vala/0.32.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/compilers/vala/0.32.nix b/pkgs/development/compilers/vala/0.32.nix
new file mode 100644
index 000000000000..8ae76ec1b05d
--- /dev/null
+++ b/pkgs/development/compilers/vala/0.32.nix
@@ -0,0 +1,30 @@
+{ stdenv, fetchurl, pkgconfig, flex, bison, libxslt
+, glib, libiconv, libintlOrEmpty
+}:
+
+let
+  major = "0.32";
+  minor = "0";
+  sha256 = "0vpvq403vdd25irvgk7zibz3nw4x4i17m0dgnns8j1q4vr7am8h7";
+in
+stdenv.mkDerivation rec {
+  name = "vala-${major}.${minor}";
+
+  meta = {
+    description = "Compiler for GObject type system";
+    homepage = "http://live.gnome.org/Vala";
+    license = stdenv.lib.licenses.lgpl21Plus;
+    platforms = stdenv.lib.platforms.unix;
+    maintainers = with stdenv.lib.maintainers; [ antono lethalman ];
+  };
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/vala/${major}/${name}.tar.xz";
+    inherit sha256;
+  };
+
+  nativeBuildInputs = [ pkgconfig flex bison libxslt ];
+
+  buildInputs = [ glib libiconv ]
+    ++ libintlOrEmpty;
+}