1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-08 11:36:07 +01:00

flake: migrate flake-compat input to NixOS organization

This commit is contained in:
NAHO 2025-10-28 10:21:53 +01:00 committed by Matt Sturgeon
parent ef19b0e94f
commit 4d78737a47
4 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@
fetchTarball {
url =
lock.nodes.flake-compat.locked.url
or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
or "https://github.com/NixOS/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
) { src = ./.; }).defaultNix

4
flake/dev/flake.lock generated
View file

@ -40,13 +40,13 @@
"locked": {
"lastModified": 1752326326,
"narHash": "sha256-JtdaTv+1VIiZpLsULCSQte6Qg3ew5axbdpOYjo+8D2U=",
"owner": "edolstra",
"owner": "NixOS",
"repo": "flake-compat",
"rev": "b70558fcb45e248abd2a0add41cfb6464c94eb03",
"type": "github"
},
"original": {
"owner": "edolstra",
"owner": "NixOS",
"ref": "pull/75/merge",
"repo": "flake-compat",
"type": "github"

View file

@ -10,7 +10,7 @@
# flake-compat is used by the root `default.nix` to allow non-flake users to import nixvim
#
# The pinned PR resolves an issue with shallow clones, such as those used by CI.
flake-compat.url = "github:edolstra/flake-compat?ref=pull/75/merge";
flake-compat.url = "github:NixOS/flake-compat?ref=pull/75/merge";
# keep-sorted start block=yes newline_separated=yes
devshell = {

View file

@ -14,7 +14,7 @@ let
fetchTarball {
url =
lock.nodes.flake-compat.locked.url
or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
or "https://github.com/NixOS/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
) { src = nixvim; }).defaultNix;