mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-13 00:16:19 +03:00
e40aad897f
* move most files * update CI configuration
8 lines
220 B
Nix
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;
|
|
}) {}
|