robustirc-bridge: init at 1.8
This commit is contained in:
parent
780da9407e
commit
b56b0b8238
|
@ -0,0 +1,27 @@
|
||||||
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "robustirc-bridge";
|
||||||
|
version = "1.8";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "robustirc";
|
||||||
|
repo = "bridge";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "12jzil97147f978shdgm6whz7699db0shh0c1fzgrjh512dw502c";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "0lm8j2iz0yysgi0bbh78ca629kb6sxvyy9al3aj2587hpvy79q85";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
install -D robustirc-bridge.1 $out/share/man/man1/robustirc-bridge.1
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Bridge to robustirc.net-IRC-Network";
|
||||||
|
homepage = "https://robustirc.net/";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = [ maintainers.hax404 ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -22990,6 +22990,8 @@ in
|
||||||
|
|
||||||
prusa-slicer = callPackage ../applications/misc/prusa-slicer { };
|
prusa-slicer = callPackage ../applications/misc/prusa-slicer { };
|
||||||
|
|
||||||
|
robustirc-bridge = callPackage ../servers/irc/robustirc-bridge { };
|
||||||
|
|
||||||
sddm = libsForQt5.callPackage ../applications/display-managers/sddm { };
|
sddm = libsForQt5.callPackage ../applications/display-managers/sddm { };
|
||||||
|
|
||||||
skrooge = libsForQt5.callPackage ../applications/office/skrooge {};
|
skrooge = libsForQt5.callPackage ../applications/office/skrooge {};
|
||||||
|
|
Loading…
Reference in New Issue