daml/sdk/nix/new-nixpkgs.nix
Gary Verhaegen e40aad897f
move to subdir 3.0 (#18520)
* move most files

* update CI configuration
2024-03-22 02:27:46 +01:00

8 lines
220 B
Nix

let
spec = builtins.fromJSON (builtins.readFile ./src.json);
in
import (builtins.fetchTarball {
url = "https://github.com/${spec.owner}/${spec.repo}/archive/${spec.rev}.tar.gz";
sha256 = spec.sha256;
}) {}