ip-checker/package.nix

16 lines
228 B
Nix
Raw Normal View History

2024-08-26 22:01:24 +00:00
{ lib, buildGoModule }:
buildGoModule {
pname = "ip-checker";
version = "dev";
src = ./.;
vendorHash = null;
meta = {
homepage = "https://git.ny4.dev/nyancat/ip-checker";
license = lib.licenses.mit;
};
}