1
0
Fork 0

overlays/schalterd: init

This commit is contained in:
Astro 2023-07-02 01:59:45 +02:00
parent 10242ac10b
commit 267f75a14c
2 changed files with 17 additions and 0 deletions

View File

@ -116,6 +116,8 @@ with final; {
readsb = callPackage ./readsb.nix { };
schalterd = callPackage ./schalterd.nix { };
telme10 = callPackage ./telme10.nix { };
tracer-game =

15
overlays/schalterd.nix Normal file
View File

@ -0,0 +1,15 @@
{ lib, pkgsStatic, fetchFromGitHub }:
pkgsStatic.pkgsCross.armv7l-hf-multiplatform.rustPlatform.buildRustPackage {
name = "schalterd";
src = "${fetchFromGitHub {
owner = "astro";
repo = "spacemsg";
# master of 2023-07-02
rev = "a825a738544e62c285f4497c151a73d417326da2";
sha256 = "sha256-8sM2GdQ2nJ3YCCF5+ZW0vBNTKL3/ulY1/fmyw++5UQQ=";
}}/schalterd";
cargoSha256 = "sha256-OdNztl4XQML2UqK/4BLzKed3pBJNd9rIwHEXaIzLQ4U=";
}