2022-03-29 10:59:08 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48 }:
|
2009-11-07 11:17:53 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2021-08-15 14:28:33 +00:00
|
|
|
pname = "scsh";
|
|
|
|
version = "0.7pre";
|
2009-11-07 11:17:53 +00:00
|
|
|
|
2022-03-29 10:59:08 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "scheme";
|
|
|
|
repo = "scsh";
|
2022-04-04 16:23:58 +00:00
|
|
|
rev = "4acf6e4ed7b65b46186ef0c9c2a1e10bef8dc052";
|
|
|
|
sha256 = "sha256-92NtMK5nVd6+WtHj/Rk6iQEkGsNEZySTVZkkbqKrLYY=";
|
2015-07-19 20:05:32 +00:00
|
|
|
fetchSubmodules = true;
|
2009-11-07 11:17:53 +00:00
|
|
|
};
|
|
|
|
|
2016-03-07 17:34:29 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ scheme48 ];
|
2018-07-25 21:44:21 +00:00
|
|
|
configureFlags = [ "--with-scheme48=${scheme48}" ];
|
2015-07-19 20:05:32 +00:00
|
|
|
|
2021-01-23 13:15:07 +00:00
|
|
|
meta = with lib; {
|
2014-12-20 23:00:35 +00:00
|
|
|
description = "A Scheme shell";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.scsh.net/";
|
2015-07-19 20:05:32 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = with maintainers; [ joachifm ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; unix;
|
2009-11-07 11:17:53 +00:00
|
|
|
};
|
|
|
|
}
|