2016-03-07 17:34:29 +00:00
|
|
|
{ stdenv, fetchgit, autoreconfHook, scheme48 }:
|
2009-11-07 11:17:53 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-07-19 21:05:32 +01:00
|
|
|
name = "scsh-0.7pre";
|
2009-11-07 11:17:53 +00:00
|
|
|
|
2015-07-19 21:05:32 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://github.com/scheme/scsh.git";
|
|
|
|
rev = "f99b8c5293628cfeaeb792019072e3a96841104f";
|
|
|
|
fetchSubmodules = true;
|
2016-06-02 12:26:44 +01:00
|
|
|
sha256 = "0ci2h9hhv8pl12sdyl2qwal3dhmd7zgm1pjnmd4kg8r1hnm6vidx";
|
2009-11-07 11:17:53 +00:00
|
|
|
};
|
|
|
|
|
2016-03-07 17:34:29 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ scheme48 ];
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--with-scheme48=${scheme48}" ];
|
2015-07-19 21:05:32 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-12-20 23:00:35 +00:00
|
|
|
description = "A Scheme shell";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.scsh.net/";
|
2015-07-19 21:05:32 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ joachifm ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2009-11-07 11:17:53 +00:00
|
|
|
};
|
|
|
|
}
|