oizys/overlays/nim-atlas/default.nix

13 lines
320 B
Nix
Raw Permalink Normal View History

2024-05-06 14:32:00 -05:00
{ ... }:
(final: prev: {
2024-01-23 11:51:13 -06:00
nim-atlas = prev.nim-atlas.overrideNimAttrs {
version = "unstable";
2024-02-02 16:23:32 -06:00
src = final.fetchFromGitHub {
2024-01-23 11:51:13 -06:00
owner = "nim-lang";
repo = "atlas";
rev = "cbba9fa77fa837931bf3c58e20c1f8cb15a22919";
hash = "sha256-TsZ8TriVuKEY9/mV6KR89eFOgYrgTqXmyv/vKu362GU=";
};
};
})