mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
15 lines
413 B
Nix
15 lines
413 B
Nix
{...}: (final: prev: {
|
|
nimble = prev.nimble.overrideNimAttrs {
|
|
version = "0.14.2-f74bf2";
|
|
requiredNimVersion = 2;
|
|
buildInputs = [prev.pkgs.openssl];
|
|
|
|
src = final.fetchFromGitHub {
|
|
owner = "nim-lang";
|
|
repo = "nimble";
|
|
# more recent commit
|
|
rev = "f74bf2bc388f7a0154104b4bcaa093a499d3f0f7";
|
|
hash = "sha256-8b5yKvEl7c7wA/8cpdaN2CSvawQJzuRce6mULj3z/mI=";
|
|
};
|
|
};
|
|
})
|