gtkspellmm: new package
@vcunat added platforms.
This commit is contained in:
parent
270c7f0622
commit
e5c7115d6d
35
pkgs/development/libraries/gtkspellmm/default.nix
Normal file
35
pkgs/development/libraries/gtkspellmm/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ stdenv, fetchurl
|
||||
, pkgconfig
|
||||
, gtk3, glib, glibmm, gtkmm3, gtkspell3
|
||||
}:
|
||||
|
||||
let
|
||||
version = "3.0.3";
|
||||
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gtkspellmm-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://downloads.sourceforge.net/project/gtkspell/gtkspellmm/" +
|
||||
"${name}.tar.gz";
|
||||
sha256 = "f9dcc0991621c08e7a972f33487afd6b37491468f0b654f50c741a7e6d810624";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
gtkspell3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
pkgconfig
|
||||
gtk3 glib glibmm gtkmm3
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "C++ binding for the gtkspell library";
|
||||
homepage = http://gtkspell.sourceforge.net/;
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -5051,6 +5051,8 @@ let
|
||||
|
||||
gtkspell3 = callPackage ../development/libraries/gtkspell/3.nix { };
|
||||
|
||||
gtkspellmm = callPackage ../development/libraries/gtkspellmm { };
|
||||
|
||||
gts = callPackage ../development/libraries/gts { };
|
||||
|
||||
gvfs = callPackage ../development/libraries/gvfs { gconf = gnome.GConf; };
|
||||
|
Loading…
Reference in New Issue
Block a user