Skip to content

Commit

Permalink
Add tempo
Browse files Browse the repository at this point in the history
Ypnose committed Nov 23, 2024
1 parent be06d7d commit 3db61f5
Showing 2 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -26,6 +26,7 @@
nvi-patched = build "nvi-patched";
openbsd-ed = build-static "openbsd-ed";
s-nail = build "s-nail";
tempo = build "tempo";
wg = build-static "wg";
wifycon = build "wifycon";
yss = build "yss";
29 changes: 29 additions & 0 deletions tempo/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{ lib
, stdenv
, fetchFromGitHub
, buildGoModule
}:

buildGoModule rec {
pname = "tempo";
version = "20241123";

src = fetchFromGitHub {
owner = "ypnose";
repo = "gools";
rev = "a41d8aa76ce769b7aa045590ec93ffc0c954c9f3";
hash = "sha256-dYwRh5bx5XelcS6mqy4Gmw5Di8uzjxufXyFf0U1Ne+s=";
};

vendorHash = null;

sourceRoot = "${src.name}/tempo";

ldflags = [ "-s" ];

meta = {
homepage = "https://github.com/Ypnose/gools";
description = "Simple tool to get EDF Tempo color";
platforms = lib.platforms.unix;
};
}

0 comments on commit 3db61f5

Please sign in to comment.