deno2.nix/nix/internal/mk-deps-link.nix
SnO₂WMaN 21efd7ac82
feat: Update for deno2nix v2 (#21)
* move simple script to `examples/simple`

* rm vscode settings.json

* example npm

* wip

* refactoring

* Update mkExecutable

* rm custom formatter  from vscode extensions

* Add .gitignore

* Update flake.nix

* bundled/executable wip

* Update flake

* importMap

* bundled wrapper

* somerefactoring

* no more overlay(default)

* add todo

* Update README.md
2022-12-14 13:00:56 +09:00

38 lines
862 B
Nix

{
lib,
linkFarm,
writeText,
deno2nix,
...
}: let
inherit (builtins) split elemAt fetchurl toJSON hashString baseNameOf;
inherit (lib) flatten mapAttrsToList importJSON;
inherit (lib.strings) sanitizeDerivationName;
inherit (deno2nix.internal) artifactPath;
in
lockfile: (
linkFarm "deps" (flatten (
mapAttrsToList
(
url: sha256: let
in [
{
name = artifactPath url;
path = fetchurl {
inherit url sha256;
name = sanitizeDerivationName (baseNameOf url);
};
}
{
name = artifactPath url + ".metadata.json";
path = writeText "metadata.json" (toJSON {
inherit url;
headers = {};
});
}
]
)
(importJSON lockfile).remote
))
)