ip-checker/package.nix

17 lines
309 B
Nix
Raw Normal View History

2024-08-26 22:01:24 +00:00
{ lib, buildGoModule }:
buildGoModule {
pname = "ip-checker";
version = "dev";
src = ./.;
2024-10-19 09:14:49 +00:00
vendorHash = "sha256-VvZcnTEgPXlAYEf2+2WZ2xlU4TWhTz+dBiA4j76GSvM=";
2024-08-26 22:01:24 +00:00
meta = {
homepage = "https://git.ny4.dev/nyancat/ip-checker";
license = lib.licenses.mit;
2024-10-19 04:28:10 +00:00
mainProgram = "ip-checker";
2024-08-26 22:01:24 +00:00
};
}