mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
a51a99c690
camelCase package name was a huge inconsistency in GNOME package set.
36 lines
1005 B
Nix
36 lines
1005 B
Nix
{ stdenv, fetchurl, pkgconfig, libxml2, glib, gtk3, enchant2, isocodes, vala, gobject-introspection, gnome3 }:
|
|
|
|
let
|
|
pname = "gspell";
|
|
version = "1.8.1";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
outputBin = "dev";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "1rdv873ixhwr15jwgc2z6k6y0hj353fqnwsy7zkh0c30qwiiv6l1";
|
|
};
|
|
|
|
propagatedBuildInputs = [ enchant2 ]; # required for pkgconfig
|
|
|
|
nativeBuildInputs = [ pkgconfig vala gobject-introspection libxml2 ];
|
|
buildInputs = [ glib gtk3 isocodes ];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A spell-checking library for GTK+ applications";
|
|
homepage = https://wiki.gnome.org/Projects/gspell;
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = gnome3.maintainers;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|