about summary refs log tree commit diff
path: root/pkgs/development/interpreters/scsh/default.nix
blob: 8da41ea1a9cb5c8bdfc6b233db9fe3d2f09ce9f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchgit, autoreconfHook, scheme48 }:

stdenv.mkDerivation {
  name = "scsh-0.7pre";

  src = fetchgit {
    url = "git://github.com/scheme/scsh.git";
    rev = "f99b8c5293628cfeaeb792019072e3a96841104f";
    fetchSubmodules = true;
    sha256 = "0ci2h9hhv8pl12sdyl2qwal3dhmd7zgm1pjnmd4kg8r1hnm6vidx";
  };

  nativeBuildInputs = [ autoreconfHook ];
  buildInputs = [ scheme48 ];
  configureFlags = ''--with-scheme48=${scheme48}'';

  meta = with stdenv.lib; {
    description = "A Scheme shell";
    homepage = http://www.scsh.net/;
    license = licenses.bsd3;
    maintainers = with maintainers; [ joachifm ];
    platforms = with platforms; unix;
  };
}