Skip to content

Commit

Permalink
add mc-monitor
Browse files Browse the repository at this point in the history
  • Loading branch information
42LoCo42 committed Jan 11, 2025
1 parent 864070f commit f0b26c8
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A personal collection of unusual things
* substituter: `https://attic.eleonora.gay/default`
* public key: `default:3FYh8sZV8gWa7Jc5jlP7gZFK7pt3kaHRiV70ySaQ42g=`

## 56 Packages
## 57 Packages

| Name | Version | Description | Homepage |
|------|---------|-------------|----------|
Expand Down Expand Up @@ -39,6 +39,7 @@ A personal collection of unusual things
|`lone`|`fca96b0`|The standalone Linux Lisp|https://github.com/lone-lang/lone|
|`lz4json`|`c44c510`|C decompress tool for mozilla lz4json format|https://github.com/andikleen/lz4json|
|`m9u`|`36493de`|A 9P music server|https://sqweek.net/code/m9u/|
|`mc-monitor`|`0.15.0`|Monitor the status of Minecraft servers|https://github.com/itzg/mc-monitor|
|`modest`|`0.0.6-devel`|A fast HTML renderer implemented as a pure C99 library with no outside dependencies|https://github.com/lexborisov/Modest|
|`msp-cgt`|`21.6.1`|MSP430 code generation tools|https://www.ti.com/tool/MSP-CGT|
|`mspgcc-ti`|`9.3.1.11`|Open Source Compiler for MSP Microcontrollers|https://www.ti.com/tool/MSP430-GCC-OPENSOURCE|
Expand Down
20 changes: 20 additions & 0 deletions packages/mc-monitor.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
pkgs: pkgs.buildGoModule rec {
pname = "mc-monitor";
version = "0.15.0";

src = pkgs.fetchFromGitHub {
owner = "itzg";
repo = pname;
rev = version;
hash = "sha256-HUxrzJULwcFMaoRxF9W+OK4POvbrB2dpPngyDmJDWEU=";
};

ldflags = [ "-s" "-w" ];
vendorHash = "sha256-nF+RdW+95H1Az5fUWp0pe7k6R6tLcAK5EbRYapo0dEU=";

meta = {
description = "Monitor the status of Minecraft servers";
homepage = "https://github.com/itzg/mc-monitor";
mainProgram = pname;
};
}

0 comments on commit f0b26c8

Please sign in to comment.