mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
gtkspell3: add gir
This commit is contained in:
parent
bdfbe578da
commit
79092439ca
@ -1,18 +1,22 @@
|
||||
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool}:
|
||||
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gtkspell-${version}";
|
||||
version = "3.0.9";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
|
||||
sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ];
|
||||
buildInputs = [ aspell gtk3 enchant isocodes ];
|
||||
propagatedBuildInputs = [ enchant ];
|
||||
|
||||
configureFlags = [ "--enable-introspection" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://gtkspell.sourceforge.net/;
|
||||
description = "Word-processor-style highlighting GtkTextView widget";
|
||||
|
Loading…
Reference in New Issue
Block a user