at 24.05-pre 28 lines 717 B view raw
1{ lib, fetchsvn, tcl, tcllib, tk, xorg }: 2 3tcl.mkTclDerivation rec { 4 pname = "tkimg"; 5 version = "623"; 6 7 src = fetchsvn { 8 url = "svn://svn.code.sf.net/p/tkimg/code/trunk"; 9 rev = version; 10 sha256 = "sha256-6GlkqYxXmMGjiJTZS2fQNVSimcKc1BZ/lvzvtkhty+o="; 11 }; 12 13 configureFlags = [ 14 "--with-tcl=${tcl}/lib" 15 "--with-tk=${tk}/lib" 16 "--with-tkinclude=${tk.dev}/include" 17 ]; 18 19 buildInputs = [ xorg.libX11 tcllib ]; 20 21 meta = { 22 homepage = "https://sourceforge.net/projects/tkimg/"; 23 description = "The Img package adds several image formats to Tcl/Tk"; 24 maintainers = with lib.maintainers; [ matthewcroughan ]; 25 license = lib.licenses.bsd3; 26 platforms = lib.platforms.unix; 27 }; 28}