forked from mirrors/nixpkgs
Add gtkspell3
This commit is contained in:
parent
6cada7f0c1
commit
2a1ecded4d
18
pkgs/development/libraries/gtkspell/3.nix
Normal file
18
pkgs/development/libraries/gtkspell/3.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, intltool}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gtkspell-${version}";
|
||||
version = "3.0.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.gz";
|
||||
sha256 = "19z48gfbraasrxai7qdkxxvky0kwifkkzqz0jqcskhcr1ikqxgzs";
|
||||
};
|
||||
|
||||
buildInputs = [ aspell pkgconfig gtk3 enchant intltool ];
|
||||
propagatedBuildInputs = [ enchant ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -4544,6 +4544,8 @@ let
|
|||
|
||||
gtkspell = callPackage ../development/libraries/gtkspell { };
|
||||
|
||||
gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };
|
||||
|
||||
gts = callPackage ../development/libraries/gts { };
|
||||
|
||||
gvfs = callPackage ../development/libraries/gvfs { };
|
||||
|
|
Loading…
Reference in a new issue