daml/nix/nixpkgs/default.nix
Moritz Kiefer 61eace44fe
Switch to nixpkgs-unstable (#1921)
The main reason for doing this is that it saves us the trouble of
having to backport changes, e.g., a newer MacOS toolchain.
2019-06-27 18:47:42 +02:00

9 lines
229 B
Nix

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