lol
at v192 32 lines 759 B view raw
1{ stdenv, fetchgit, sqlite }: 2 3stdenv.mkDerivation { 4 name = "jimtcl-0.75-git"; 5 6 src = fetchgit { 7 url = https://github.com/msteveb/jimtcl.git; 8 rev = "c4d4bf8bc104733db1f5992a27d88fbfca9ba882"; 9 sha256 = "0vnl2k5sj250l08bplqd61zj6261v7kp202pss66g01rhp42fj3r"; 10 }; 11 12 buildInputs = [ 13 sqlite 14 ]; 15 16 configureFlags = [ 17 "--with-ext=oo" 18 "--with-ext=tree" 19 "--with-ext=binary" 20 "--with-ext=sqlite3" 21 "--enable-utf8" 22 "--ipv6" 23 ]; 24 25 meta = { 26 description = "An open source small-footprint implementation of the Tcl programming language"; 27 homepage = http://jim.tcl.tk/; 28 license = stdenv.lib.licenses.bsd2; 29 platforms = stdenv.lib.platforms.all; 30 maintainers = with stdenv.lib.maintainers; [ dbohdan ]; 31 }; 32}