summaryrefslogtreecommitdiffstats
path: root/default.nix
blob: e597b6126e6a6f9ba596a84e913f43adee79c85b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(import (
    let
      lock = builtins.fromJSON (builtins.readFile ./flake.lock);
      inherit (lock.nodes.flake-compat.locked) url rev narHash;
    in
      builtins.fetchTarball {
        url = "${url}/archive/${rev}.tar.gz";
        sha256 = narHash;
      }
  ) {
    src = ./.;
    copySourceTreeToStore = false;
    useBuiltinsFetchTree = true;
  })
.defaultNix