nixpkgs/pkgs/servers/pounce/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
705 B
Nix
Raw Normal View History

2022-09-30 02:47:06 +03:00
{ lib, stdenv, libressl, fetchzip, pkg-config, libxcrypt }:
2019-11-27 22:54:48 +03:00
stdenv.mkDerivation rec {
pname = "pounce";
2021-10-19 17:11:59 +03:00
version = "3.0";
2019-11-27 22:54:48 +03:00
src = fetchzip {
2020-02-11 23:04:58 +03:00
url = "https://git.causal.agency/pounce/snapshot/pounce-${version}.tar.gz";
2021-10-19 17:11:59 +03:00
sha256 = "17vmbfr7ika6kmq9jqa3rpd4cr71arapav7hlmggnj7a9yw5b9mg";
2019-11-27 22:54:48 +03:00
};
2022-09-30 02:47:06 +03:00
buildInputs = [ libressl libxcrypt ];
2019-11-27 22:54:48 +03:00
2020-07-08 19:28:15 +03:00
nativeBuildInputs = [ pkg-config ];
2019-11-27 22:54:48 +03:00
buildFlags = [ "all" ];
makeFlags = [
"PREFIX=$(out)"
];
meta = with lib; {
homepage = "https://code.causal.agency/june/pounce";
2019-11-27 22:54:48 +03:00
description = "Simple multi-client TLS-only IRC bouncer";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ edef ];
};
}