gspell: 1.0.3 -> 1.2.1

also enable vala bindings
This commit is contained in:
Jörg Thalheim 2017-03-30 11:01:12 +02:00
parent b603a943e5
commit 04223369e3
No known key found for this signature in database
GPG key ID: CA4106B8D7CC79FA
2 changed files with 5 additions and 5 deletions

View file

@ -1,9 +1,9 @@
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes }: { stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src; inherit (import ./src.nix fetchurl) name src;
buildInputs = [ pkgconfig glib gtk3 enchant isocodes ]; buildInputs = [ pkgconfig glib gtk3 enchant isocodes vala ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
platforms = platforms.linux; platforms = platforms.linux;

View file

@ -1,10 +1,10 @@
fetchurl: rec { fetchurl: rec {
major = "1.0"; major = "1.2";
minor = "3"; minor = "1";
name = "gspell-${major}.${minor}"; name = "gspell-${major}.${minor}";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gspell/${major}/${name}.tar.xz"; url = "mirror://gnome/sources/gspell/${major}/${name}.tar.xz";
sha256 = "1m8v4rqaxjsblccc3nnirkbkzgqm90vfpzp3x08lkqriqvk0anfr"; sha256 = "18zisdrq14my2iq6iv3lhqfn9jg98bqwbzcdidp7hfk915gkw74z";
}; };
} }