2021-03-24 09:25:58 -07:00
|
|
|
{ lib, stdenv, libressl, fetchzip, pkg-config }:
|
2019-11-27 11:54:48 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pounce";
|
2021-03-24 09:25:58 -07:00
|
|
|
version = "2.3";
|
2019-11-27 11:54:48 -08:00
|
|
|
|
|
|
|
src = fetchzip {
|
2020-02-11 12:04:58 -08:00
|
|
|
url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz";
|
2021-03-24 09:25:58 -07:00
|
|
|
sha256 = "0pk3kwr6k6dz2vdx1kyv7mhj756j4bwsmdlmjzhh8ghczjqp2s2x";
|
2019-11-27 11:54:48 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libressl ];
|
|
|
|
|
2020-07-08 09:28:15 -07:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-11-27 11:54:48 -08:00
|
|
|
|
|
|
|
buildFlags = [ "all" ];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://code.causal.agency/june/pounce";
|
2019-11-27 11:54:48 -08:00
|
|
|
description = "Simple multi-client TLS-only IRC bouncer";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ edef ];
|
|
|
|
};
|
|
|
|
}
|