nixpkgs/pkgs/development/libraries/gtkspell/default.nix
Tuomas Tynkkynen 2258b21e4b treewide: Add lots of platforms to packages with no meta
Build-tested on x86_64 Linux and on Darwin.
2016-08-02 21:17:44 +03:00

17 lines
396 B
Nix

{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";
};
buildInputs = [aspell pkgconfig gtk enchant intltool];
meta = {
platforms = stdenv.lib.platforms.unix;
};
}