rust-template/default.nix
Charlotte 🦝 Delenk 846fb2c0e4
All checks were successful
Hydra x86_64-linux.rust-template Hydra build #1788 of procyos:rust-template:x86_64-linux.rust-template
integrate with the CI system
2024-09-04 10:57:21 +02:00

15 lines
374 B
Nix

(
import
(
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in
fetchTarball {
url = lock.nodes.flake-compat.locked.url or "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
)
{src = ./.;}
)
.defaultNix
.hydraJobs