nixpkgs/pkgs/servers/pounce/default.nix

30 lines
698 B
Nix
Raw Normal View History

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