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;
|
|
|
|
sha256 = "0fz1r0bmiii9ld91r84dqkqwhnqk0h6drdycq93zcy5ndyn12fqp";
|
2009-11-07 11:17:53 +00:00
|
|
|
};
|
|
|
|
|
2016-03-07 17:34:29 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ scheme48 ];
|
2015-07-19 21:05:32 +01:00
|
|
|
configureFlags = ''--with-scheme48=${scheme48}'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-12-20 23:00:35 +00:00
|
|
|
description = "A Scheme shell";
|
2009-11-07 11:17:53 +00:00
|
|
|
homepage = http://www.scsh.net/;
|
2015-07-19 21:05:32 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ joachifm ];
|
2009-11-07 11:17:53 +00:00
|
|
|
};
|
|
|
|
}
|