From cf7a8c52e328d64696cfe8cd03a872c85588d57a Mon Sep 17 00:00:00 2001
From: Astro <astro@spaceboyz.net>
Date: Thu, 3 Oct 2019 22:34:03 +0200
Subject: [PATCH] hydra/combined: include rkanoid

---
 hydra/combined.nix | 4 ++--
 hydra/hydra.nix    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/hydra/combined.nix b/hydra/combined.nix
index 531be58..f5a263f 100644
--- a/hydra/combined.nix
+++ b/hydra/combined.nix
@@ -1,13 +1,13 @@
 { pkgs ? import <nixpkgs> {},
   cFirmware ? <c-firmware>,
-  rustL0dables ? <rust-l0dables>,
+  rkanoid ? <rkanoid>,
 }:
 with pkgs;
 
 let
   l0dables = buildEnv {
     name = "l0dables";
-    paths = [ rustL0dables ];
+    paths = [ rkanoid ];
     pathsToLink = [ "/apps" ];
   };
   release = import ../release.nix {
diff --git a/hydra/hydra.nix b/hydra/hydra.nix
index 2e740a3..7e69995 100644
--- a/hydra/hydra.nix
+++ b/hydra/hydra.nix
@@ -50,7 +50,7 @@ let
       inputs = {
         rust-card10 = { type = "git"; value = "https://git.card10.badge.events.ccc.de/astro/rust-card10.git"; emailresponsible = false; };
         c-firmware = { type = "build"; value = "rust-card10:c-firmware:firmware"; emailresponsible = false; };
-        rust-l0dables = { type = "build"; value = "rust-card10:rust-l0dables:l0dables"; emailresponsible = false; };
+        rkanoid = { type = "build"; value = "rust-card10:rust-l0dables:rkanoid"; emailresponsible = false; };
         nixpkgs = { type = "git"; value = "git://github.com/NixOS/nixpkgs.git release-19.03"; emailresponsible = false; };
       };
     };
-- 
GitLab