mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
pkgs/go-avahi-cname: init
This commit is contained in:
parent
2bc63930aa
commit
abcbb46cac
@ -23,6 +23,7 @@ in lib.makeScope pkgs.newScope (self: {
|
|||||||
distant = callPackage ./distant.nix { };
|
distant = callPackage ./distant.nix { };
|
||||||
gnome-search-provider-recoll =
|
gnome-search-provider-recoll =
|
||||||
callPackage ./gnome-search-provider-recoll.nix { };
|
callPackage ./gnome-search-provider-recoll.nix { };
|
||||||
|
go-avahi-cname = callPackage ./go-avahi-cname { };
|
||||||
hush-shell = callPackage ./hush-shell.nix { };
|
hush-shell = callPackage ./hush-shell.nix { };
|
||||||
lazyjj = callPackage ./lazyjj { };
|
lazyjj = callPackage ./lazyjj { };
|
||||||
lwp = callPackage ./lwp { };
|
lwp = callPackage ./lwp { };
|
||||||
|
23
pkgs/go-avahi-cname/default.nix
Normal file
23
pkgs/go-avahi-cname/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ lib, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "go-avahi-cname";
|
||||||
|
version = "2.0.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "grishy";
|
||||||
|
repo = "go-avahi-cname";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-hOX7/9mgWkdm6Rwe5zg0n4WC6y4erilMP5QPEWVSadI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-EmEnnENKzWUY5djFZlKWNFLkyZ1hzNW+4HF0ui45GjI=";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/grishy/go-avahi-cname";
|
||||||
|
license = licenses.mit;
|
||||||
|
description = "Lightweight mDNS publisher of subdomains for your machine";
|
||||||
|
mainProgram = "go-avahi-cname";
|
||||||
|
maintainers = with maintainers; [ foo-dogsquared ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user