nixpkgs/pkgs/servers/pounce/default.nix

30 lines
698 B
Nix
Raw Normal View History

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