531e4b80c9
Only acts on one-line dependency lists.
18 lines
425 B
Nix
18 lines
425 B
Nix
{stdenv, fetchurl, gtk2, 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";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [aspell gtk2 enchant intltool];
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|