ddns-go: init at 5.5.1
This commit is contained in:
parent
96850c1aaf
commit
ee85c74919
2 changed files with 34 additions and 0 deletions
32
pkgs/tools/networking/ddns-go/default.nix
Normal file
32
pkgs/tools/networking/ddns-go/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "ddns-go";
|
||||||
|
version = "5.5.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "jeessy2";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-fjfY0QLXewbjpoTbPjSEyrTXppzZ/LjvkFjc782Scp0=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-azsXfWa4w3wZaiy9AKy7UPOybikubcJvLsXthYedmbY=";
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-X main.version=${version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
# network required
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib;{
|
||||||
|
homepage = "https://github.com/jeessy2/ddns-go";
|
||||||
|
description = "Simple and easy to use DDNS";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ oluceps ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -37262,6 +37262,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa OpenGL Security;
|
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa OpenGL Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ddns-go = callPackage ../tools/networking/ddns-go { };
|
||||||
|
|
||||||
devilutionx = callPackage ../games/devilutionx {
|
devilutionx = callPackage ../games/devilutionx {
|
||||||
fmt = fmt_9;
|
fmt = fmt_9;
|
||||||
SDL2 = SDL2.override {
|
SDL2 = SDL2.override {
|
||||||
|
|
Loading…
Reference in a new issue