From b1645ea34f85c8892584bc633dcd03ce5fa81e87 Mon Sep 17 00:00:00 2001 From: Arnaud Date: Fri, 1 May 2026 18:26:09 +0400 Subject: [PATCH] Update Nix configuration --- nix/csources.nix | 4 ++-- nix/default.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/nix/csources.nix b/nix/csources.nix index 33cd9d0f..f65da1ff 100644 --- a/nix/csources.nix +++ b/nix/csources.nix @@ -5,8 +5,8 @@ let sourceFile = ../vendor/nimbus-build-system/vendor/Nim/config/build_config.txt; in pkgs.fetchFromGitHub { owner = "nim-lang"; - repo = "csources_v2"; + repo = "csources_v3"; rev = tools.findKeyValue "^nim_csourcesHash=([a-f0-9]+)$" sourceFile; # WARNING: Requires manual updates when Nim compiler version changes. - hash = "sha256-UCLtoxOcGYjBdvHx7A47x6FjLMi6VZqpSs65MN7fpBs="; + hash = "sha256-pTcm2y+HDOuTol8DyoJMOMHsUA6QrgwGdfcOu1NX4PU="; } diff --git a/nix/default.nix b/nix/default.nix index d7cd15ce..cff032af 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -81,8 +81,8 @@ in stdenv.mkDerivation rec { mkdir dist cp -r ${callPackage ./nimble.nix {}} dist/nimble cp -r ${callPackage ./checksums.nix {}} dist/checksums - cp -r ${callPackage ./csources.nix {}} csources_v2 - chmod 777 -R dist/nimble csources_v2 + cp -r ${callPackage ./csources.nix {}} csources_v3 + chmod 777 -R dist/nimble csources_v3 popd '';