Testing Hercules CI

This commit is contained in:
Andrea Ciceri 2022-04-13 18:32:51 +02:00
parent f205170f72
commit 697be1cbd2
No known key found for this signature in database
GPG key ID: AAFD2423608B645B
4 changed files with 60 additions and 15 deletions

9
flake-compat.nix Normal file
View file

@ -0,0 +1,9 @@
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
inherit (lock.nodes.flake-compat.locked) owner repo rev narHash;
flake-compat = builtins.fetchTarball {
url = "https://github.com/${owner}/${repo}/archive/${rev}.tar.gz";
sha256 = narHash;
};
in
import flake-compat { src = ./.; }