nodejs: Add default flake-compat file.

main
Joshua Potter 2024-01-30 11:15:14 -07:00
parent dbfefe644c
commit b3f8826692
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
(import
(
let lock = builtins.fromJSON (builtins.readFile ./flake.lock); in
fetchTarball {
url = lock.nodes.flake-compat.locked.url or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
)
{ src = ./.; }
).defaultNix