hydra-config/spacemsg.nix

18 lines
400 B
Nix
Raw Normal View History

2019-09-12 00:58:00 +02:00
{ pkgs ? import <nixpkgs> {},
}:
with pkgs;
let
spaceapi = import "${<spacemsg>}/spaceapi" {
inherit pkgs;
};
2019-09-12 03:13:05 +02:00
schalterd = rustPlatform.buildRustPackage {
name = "schalterd";
src = "${<spacemsg>}/schalterd";
cargoSha256 = "1d0mygy9ajffalhmqllc7dmzxl2q84cll7zrdz9q6xgb6680l77j";
};
jobs = {
inherit spaceapi schalterd;
};
in builtins.mapAttrs (name: lib.hydraJob) jobs