nixpkgs/pkgs/development/libraries/gtkspell/default.nix

13 lines
336 B
Nix
Raw Normal View History

2013-07-14 10:46:51 +00:00
{stdenv, fetchurl, gtk, aspell, pkgconfig, enchant, intltool}:
stdenv.mkDerivation {
name = "gtkspell-2.0.16";
src = fetchurl {
url = mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz;
sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg";
};
2013-07-14 10:46:51 +00:00
buildInputs = [aspell pkgconfig gtk enchant intltool];
}