mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
31 lines
875 B
Nix
31 lines
875 B
Nix
{lib, stdenv, fetchurl, gtk3, aspell, pkg-config, enchant, isocodes, intltool, gobject-introspection, vala}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gtkspell";
|
|
version = "3.0.10";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
|
|
sha256 = "0cjp6xdcnzh6kka42w9g0w2ihqjlq8yl8hjm9wsfnixk6qwgch5h";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config intltool gobject-introspection vala ];
|
|
buildInputs = [ aspell gtk3 enchant isocodes ];
|
|
propagatedBuildInputs = [ enchant ];
|
|
|
|
configureFlags = [
|
|
"--enable-introspection"
|
|
"--enable-vala"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://gtkspell.sourceforge.net/";
|
|
description = "Word-processor-style highlighting GtkTextView widget";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|