xin/pkgs/icbirc.nix

31 lines
708 B
Nix
Raw Normal View History

2023-09-12 08:44:05 -06:00
{ lib
, stdenv
, fetchurl
, pkgs
, ...
2023-07-11 09:12:50 -06:00
}:
2022-08-25 12:21:35 -06:00
stdenv.mkDerivation rec {
pname = "icbirc";
version = "2.1";
src = fetchurl {
2023-03-22 10:35:46 -06:00
url = "http://www.benzedrine.ch/icbirc-${version}.tar.gz";
2022-08-25 12:21:35 -06:00
sha256 = "sha256-aDk0TZPABNqX7Gu12AWh234Kee/DhwRFeIBDYnFiu7E=";
};
2023-09-12 08:44:05 -06:00
patches = [ ./icbirc.diff ];
2022-08-25 12:21:35 -06:00
2023-09-12 08:44:05 -06:00
buildInputs = with pkgs; [ libbsd bsdbuild bmake ];
2022-08-25 12:21:35 -06:00
meta = with lib; {
description = "proxy IRC client with ICB server";
longDescription = ''
icbirc is a proxy that allows to connect an IRC client to an ICB server.
'';
homepage = "http://www.benzedrine.ch/icbirc.html";
license = licenses.bsd2;
platforms = platforms.linux;
2023-09-12 08:44:05 -06:00
maintainers = with maintainers; [ qbit ];
2022-08-25 12:21:35 -06:00
};
}