summary refs log tree commit diff
path: root/pkgs/development/interpreters/lambda-lisp/sources.nix
blob: 8dbda01b4e27cdc7940c3582f37d86e1e304a7df (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
let
  lambdaLispVersion = "2022-08-18";
  blcVersion = "2";
  # Archive of "https://justine.lol/lambda/";
  justineLolArchive = "https://web.archive.org/web/20230614065521if_/https://justine.lol/lambda/";
in
{ fetchFromGitHub, fetchurl }: {
  inherit blcVersion;
  inherit lambdaLispVersion;

  src = fetchFromGitHub {
    owner = "woodrush";
    repo = "lambdalisp";
    rev = "2119cffed1ab2005f08ab3cfca92028270f08725";
    hash = "sha256-ml2xQ8s8sux+6GwTw8mID3PEOcH6hn8tyc/UI5tFaO0=";
  };

  uniCSrc = fetchFromGitHub {
    owner = "tromp";
    repo = "tromp.github.io";
    rev = "b4de12e566c1fb0fa3f3babe89bac885f4c966a4";
    hash = "sha256-JmbqQp2kkkkkkkkSWQmG3uBxdgyIu4r2Ch8bBGyQ4H4=";
  };

  # needed later
  clambSrc = fetchFromGitHub {
    owner = "irori";
    repo = "clamb";
    rev = "44c1208697f394e22857195be5ea73bfdd48ebd1";
    hash = "sha256-1lGg2NBoxAKDCSnnPn19r/hwBC5paAKUnlcsUv3dpNY=";
  };

  # needed later
  lazykSrc = fetchFromGitHub {
    owner = "irori";
    repo = "lazyk";
    rev = "5edb0b834d0af5f7413c484eb3795d47ec2e3894";
    hash = "sha256-1lGg2NBoxAKDCSnnPn19r/hwBC5paAKUnlcsUv3dpNY=";
  };

  blcSrc = fetchurl {
    url = "${justineLolArchive}Blc.S?v=${blcVersion}";
    hash = "sha256-qt7vDtn9WvDoBaLESCyyscA0u74914e8ZKhLiUAN52A=";
  };

  flatSrc = fetchurl {
    url = "${justineLolArchive}flat.lds";
    hash = "sha256-HxX+10rV86zPv+UtF+n72obtz3DosWLMIab+uskxIjA=";
  };
}