spacemsg: add schalterd

This commit is contained in:
Astro 2019-09-12 03:13:05 +02:00
parent f166d4007c
commit 59208b2e87
1 changed files with 9 additions and 3 deletions

View File

@ -6,6 +6,12 @@ let
spaceapi = import "${<spacemsg>}/spaceapi" {
inherit pkgs;
};
in {
spaceapi = lib.hydraJob spaceapi;
}
schalterd = rustPlatform.buildRustPackage {
name = "schalterd";
src = "${<spacemsg>}/schalterd";
cargoSha256 = "1d0mygy9ajffalhmqllc7dmzxl2q84cll7zrdz9q6xgb6680l77j";
};
jobs = {
inherit spaceapi schalterd;
};
in builtins.mapAttrs (name: lib.hydraJob) jobs