mirror of
https://github.com/NotAShelf/batmon.git
synced 2025-01-19 08:22:29 +00:00
23 lines
336 B
Nix
23 lines
336 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
}:
|
|
buildGoModule {
|
|
pname = "Batmon";
|
|
version = "0.1.0";
|
|
|
|
src = builtins.path {
|
|
path = ../.;
|
|
name = "batmon-src";
|
|
};
|
|
|
|
vendorHash = null;
|
|
ldflags = ["-s" "-w"];
|
|
|
|
meta = {
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = [lib.maintainers.NotAShelf];
|
|
mainProgram = "batmon";
|
|
};
|
|
}
|