mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
gspell: 1.0.3 -> 1.2.1
also enable vala bindings
This commit is contained in:
parent
b603a943e5
commit
04223369e3
|
@ -1,9 +1,9 @@
|
|||
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes }:
|
||||
{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes, vala }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
inherit (import ./src.nix fetchurl) name src;
|
||||
|
||||
buildInputs = [ pkgconfig glib gtk3 enchant isocodes ];
|
||||
buildInputs = [ pkgconfig glib gtk3 enchant isocodes vala ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
fetchurl: rec {
|
||||
major = "1.0";
|
||||
minor = "3";
|
||||
major = "1.2";
|
||||
minor = "1";
|
||||
name = "gspell-${major}.${minor}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gspell/${major}/${name}.tar.xz";
|
||||
sha256 = "1m8v4rqaxjsblccc3nnirkbkzgqm90vfpzp3x08lkqriqvk0anfr";
|
||||
sha256 = "18zisdrq14my2iq6iv3lhqfn9jg98bqwbzcdidp7hfk915gkw74z";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue