blob: c4d2f3a462a5f4768562bccdcc2100c8d0ee9c88 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, buildGoModule, ... }:
buildGoModule rec {
name = "ipconverter";
src = ./.;
vendorSha256 = "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=";
nativeBuildInputs = with pkgs; [ go ];
meta = with pkgs.lib; {
description = "CLI to convert IP addresses to integer and vice versa";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ ];
};
}
|