mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
36 lines
694 B
Nix
36 lines
694 B
Nix
|
{ 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;
|
||
|
};
|
||
|
}
|