Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 50 lines 1.4 kB view raw
1let 2 lambdaLispVersion = "2022-08-18"; 3 blcVersion = "2"; 4 # Archive of "https://justine.lol/lambda/"; 5 justineLolArchive = "https://web.archive.org/web/20230614065521if_/https://justine.lol/lambda/"; 6in 7{ fetchFromGitHub, fetchurl }: { 8 inherit blcVersion; 9 inherit lambdaLispVersion; 10 11 src = fetchFromGitHub { 12 owner = "woodrush"; 13 repo = "lambdalisp"; 14 rev = "2119cffed1ab2005f08ab3cfca92028270f08725"; 15 hash = "sha256-ml2xQ8s8sux+6GwTw8mID3PEOcH6hn8tyc/UI5tFaO0="; 16 }; 17 18 uniCSrc = fetchFromGitHub { 19 owner = "tromp"; 20 repo = "tromp.github.io"; 21 rev = "b4de12e566c1fb0fa3f3babe89bac885f4c966a4"; 22 hash = "sha256-JmbqQp2kkkkkkkkSWQmG3uBxdgyIu4r2Ch8bBGyQ4H4="; 23 }; 24 25 # needed later 26 clambSrc = fetchFromGitHub { 27 owner = "irori"; 28 repo = "clamb"; 29 rev = "44c1208697f394e22857195be5ea73bfdd48ebd1"; 30 hash = "sha256-1lGg2NBoxAKDCSnnPn19r/hwBC5paAKUnlcsUv3dpNY="; 31 }; 32 33 # needed later 34 lazykSrc = fetchFromGitHub { 35 owner = "irori"; 36 repo = "lazyk"; 37 rev = "5edb0b834d0af5f7413c484eb3795d47ec2e3894"; 38 hash = "sha256-1lGg2NBoxAKDCSnnPn19r/hwBC5paAKUnlcsUv3dpNY="; 39 }; 40 41 blcSrc = fetchurl { 42 url = "${justineLolArchive}Blc.S?v=${blcVersion}"; 43 hash = "sha256-qt7vDtn9WvDoBaLESCyyscA0u74914e8ZKhLiUAN52A="; 44 }; 45 46 flatSrc = fetchurl { 47 url = "${justineLolArchive}flat.lds"; 48 hash = "sha256-HxX+10rV86zPv+UtF+n72obtz3DosWLMIab+uskxIjA="; 49 }; 50}