mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 10:10:45 -06:00
use final where appropriate
This commit is contained in:
parent
5f78645348
commit
095c4c94be
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
{...}: (_final: prev: {
|
{...}: (final: prev: {
|
||||||
nim-atlas = prev.nim-atlas.overrideNimAttrs {
|
nim-atlas = prev.nim-atlas.overrideNimAttrs {
|
||||||
version = "unstable";
|
version = "unstable";
|
||||||
src = prev.fetchFromGitHub {
|
src = final.fetchFromGitHub {
|
||||||
owner = "nim-lang";
|
owner = "nim-lang";
|
||||||
repo = "atlas";
|
repo = "atlas";
|
||||||
rev = "cbba9fa77fa837931bf3c58e20c1f8cb15a22919";
|
rev = "cbba9fa77fa837931bf3c58e20c1f8cb15a22919";
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{...}: (_final: prev: {
|
{...}: (final: prev: {
|
||||||
nimble = prev.nimble.overrideNimAttrs {
|
nimble = prev.nimble.overrideNimAttrs {
|
||||||
version = "0.14.2-f74bf2";
|
version = "0.14.2-f74bf2";
|
||||||
requiredNimVersion = 2;
|
requiredNimVersion = 2;
|
||||||
buildInputs = [prev.pkgs.openssl];
|
buildInputs = [prev.pkgs.openssl];
|
||||||
|
|
||||||
src = prev.fetchFromGitHub {
|
src = final.fetchFromGitHub {
|
||||||
owner = "nim-lang";
|
owner = "nim-lang";
|
||||||
repo = "nimble";
|
repo = "nimble";
|
||||||
# more recent commit
|
# more recent commit
|
||||||
|
|
Loading…
Reference in a new issue