lol
1{ lib, stdenv, libressl, fetchzip, pkg-config }:
2
3stdenv.mkDerivation rec {
4 pname = "pounce";
5 version = "3.0";
6
7 src = fetchzip {
8 url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz";
9 sha256 = "17vmbfr7ika6kmq9jqa3rpd4cr71arapav7hlmggnj7a9yw5b9mg";
10 };
11
12 buildInputs = [ libressl ];
13
14 nativeBuildInputs = [ pkg-config ];
15
16 buildFlags = [ "all" ];
17
18 makeFlags = [
19 "PREFIX=$(out)"
20 ];
21
22 meta = with lib; {
23 homepage = "https://code.causal.agency/june/pounce";
24 description = "Simple multi-client TLS-only IRC bouncer";
25 license = licenses.gpl3;
26 platforms = platforms.linux;
27 maintainers = with maintainers; [ edef ];
28 };
29}