Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48 }:
2
3stdenv.mkDerivation {
4 pname = "scsh";
5 version = "0.7pre";
6
7 src = fetchFromGitHub {
8 owner = "scheme";
9 repo = "scsh";
10 rev = "4acf6e4ed7b65b46186ef0c9c2a1e10bef8dc052";
11 sha256 = "sha256-92NtMK5nVd6+WtHj/Rk6iQEkGsNEZySTVZkkbqKrLYY=";
12 fetchSubmodules = true;
13 };
14
15 nativeBuildInputs = [ autoreconfHook ];
16 buildInputs = [ scheme48 ];
17 configureFlags = [ "--with-scheme48=${scheme48}" ];
18
19 meta = with lib; {
20 description = "A Scheme shell";
21 homepage = "http://www.scsh.net/";
22 license = licenses.bsd3;
23 maintainers = with maintainers; [ joachifm ];
24 platforms = with platforms; unix;
25 };
26}