30 lines
698 B
Nix
30 lines
698 B
Nix
{ stdenv, libressl, fetchzip, fetchpatch, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pounce";
|
|
version = "2.0";
|
|
|
|
src = fetchzip {
|
|
url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz";
|
|
sha256 = "0vr42s8l617k6893zq7qn9wz7kcdchmr99ivbkrmvd38qrhsa02l";
|
|
};
|
|
|
|
buildInputs = [ libressl ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildFlags = [ "all" ];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://code.causal.agency/june/pounce";
|
|
description = "Simple multi-client TLS-only IRC bouncer";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ edef ];
|
|
};
|
|
}
|