lol
at 17.09-beta 25 lines 754 B view raw
1{ stdenv, fetchurl, pkgconfig, glib, zlib, libgpgerror, gobjectIntrospection }: 2 3stdenv.mkDerivation rec { 4 name = "gmime-2.6.23"; 5 6 src = fetchurl { 7 url = "mirror://gnome/sources/gmime/2.6/${name}.tar.xz"; 8 sha256 = "0slzlzcr3h8jikpz5a5amqd0csqh2m40gdk910ws2hnaf5m6hjbi"; 9 }; 10 11 outputs = [ "out" "dev" ]; 12 13 nativeBuildInputs = [ pkgconfig gobjectIntrospection ]; 14 propagatedBuildInputs = [ glib zlib libgpgerror ]; 15 configureFlags = [ "--enable-introspection=yes" ]; 16 17 enableParallelBuilding = true; 18 19 meta = { 20 homepage = http://spruce.sourceforge.net/gmime/; 21 description = "A C/C++ library for manipulating MIME messages"; 22 maintainers = [ stdenv.lib.maintainers.chaoflow ]; 23 platforms = stdenv.lib.platforms.unix; 24 }; 25}