nixpkgs/pkgs/development/libraries/gtkspellmm/default.nix
zimbatm 69ce5cb656 use the sourceforge mirrors everywhere
find pkgs -name "*.nix" -exec sed -r \
    "s|https?://downloads.sourceforge.net/|mirror://sourceforge/|g" -i {} \;
2016-02-28 12:07:42 +00:00

36 lines
682 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 = "mirror://sourceforge/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;
};
}