lol
at 16.09-beta 16 lines 396 B view raw
1{stdenv, fetchurl, gtk, aspell, pkgconfig, enchant, intltool}: 2 3stdenv.mkDerivation { 4 name = "gtkspell-2.0.16"; 5 6 src = fetchurl { 7 url = mirror://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz; 8 sha256 = "00hdv28bp72kg1mq2jdz1sdw2b8mb9iclsp7jdqwpck705bdriwg"; 9 }; 10 11 buildInputs = [aspell pkgconfig gtk enchant intltool]; 12 13 meta = { 14 platforms = stdenv.lib.platforms.unix; 15 }; 16}