2024-06-24 22:02:16 +00:00
|
|
|
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
|
|
|
|
let
|
|
|
|
tools = pkgs.callPackage ./tools.nix {};
|
|
|
|
sourceFile = ../vendor/nimbus-build-system/vendor/Nim/koch.nim;
|
|
|
|
in pkgs.fetchFromGitHub {
|
|
|
|
owner = "nim-lang";
|
|
|
|
repo = "checksums";
|
|
|
|
rev = tools.findKeyValue "^ +ChecksumsStableCommit = \"([a-f0-9]+)\"$" sourceFile;
|
|
|
|
# WARNING: Requires manual updates when Nim compiler version changes.
|
2024-10-03 15:13:44 +00:00
|
|
|
hash = "sha256-Bm5iJoT2kAvcTexiLMFBa9oU5gf7d4rWjo3OiN7obWQ=";
|
2024-06-24 22:02:16 +00:00
|
|
|
}
|