parent
31e7a2ce7a
commit
65e7aeda65
|
@ -1,16 +1,17 @@
|
||||||
{stdenv, fetchurl, yacc, flex, pkgconfig, glib}:
|
{stdenv, fetchurl, yacc, flex, pkgconfig, glib, xz}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
baseName = "vala";
|
name = "vala-0.14.2";
|
||||||
baseVersion = "0.11";
|
|
||||||
revision = "2";
|
|
||||||
version = "${baseVersion}.${revision}";
|
|
||||||
name = "${baseName}-${version}";
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/${baseName}/${baseVersion}/${name}.tar.bz2";
|
url = mirror://gnome/sources/vala/0.14/vala-0.14.2.tar.xz;
|
||||||
sha256 = "489b60a49a03c8915b513a722ca08986c18ae0dc6489cce6bbb8415670612046";
|
sha256 = "1l5kllw9vpwv24lzv9fp64l3sad46wpxgvsgryrwlrjg91w6jzl0";
|
||||||
};
|
};
|
||||||
buildInputs = [ yacc flex glib pkgconfig ];
|
|
||||||
|
buildNativeInputs = [ yacc flex pkgconfig xz ];
|
||||||
|
|
||||||
|
buildInputs = [ glib ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Compiler for the GObject type system";
|
description = "Compiler for the GObject type system";
|
||||||
homepage = "http://live.gnome.org/Vala";
|
homepage = "http://live.gnome.org/Vala";
|
||||||
|
|
Loading…
Reference in New Issue