drawbridge 0.2.2

Drawbridge library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
let
  lock = builtins.fromJSON (builtins.readFile ./flake.lock);

  fetchInputFromGithub = name:
    with lock.nodes.${name}.locked;
      builtins.fetchTarball {
        url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";
        sha256 = narHash;
      };
  flakeCompat = fetchInputFromGithub "flake-compat";

  flake = import flakeCompat {src = ./.;};
in
  flake.shellNix