at 16.09-beta 24 lines 668 B view raw
1{ stdenv, fetchgit, autoreconfHook, scheme48 }: 2 3stdenv.mkDerivation { 4 name = "scsh-0.7pre"; 5 6 src = fetchgit { 7 url = "git://github.com/scheme/scsh.git"; 8 rev = "f99b8c5293628cfeaeb792019072e3a96841104f"; 9 fetchSubmodules = true; 10 sha256 = "0ci2h9hhv8pl12sdyl2qwal3dhmd7zgm1pjnmd4kg8r1hnm6vidx"; 11 }; 12 13 nativeBuildInputs = [ autoreconfHook ]; 14 buildInputs = [ scheme48 ]; 15 configureFlags = ''--with-scheme48=${scheme48}''; 16 17 meta = with stdenv.lib; { 18 description = "A Scheme shell"; 19 homepage = http://www.scsh.net/; 20 license = licenses.bsd3; 21 maintainers = with maintainers; [ joachifm ]; 22 platforms = with platforms; unix; 23 }; 24}