depot/third_party/nixpkgs/pkgs/servers/pounce/default.nix
Default email b6f2ab0a42 Project import generated by Copybara.
GitOrigin-RevId: 253aecf69ed7595aaefabde779aa6449195bebb7
2021-08-18 15:19:15 +02:00

29 lines
683 B
Nix

{ lib, stdenv, libressl, fetchzip, pkg-config }:
stdenv.mkDerivation rec {
pname = "pounce";
version = "2.4";
src = fetchzip {
url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz";
sha256 = "sha256-bEObiqgkSarYILwZE70OjRyEUy3QZg+FLocWljFRGNc=";
};
buildInputs = [ libressl ];
nativeBuildInputs = [ pkg-config ];
buildFlags = [ "all" ];
makeFlags = [
"PREFIX=$(out)"
];
meta = with 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 ];
};
}