2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchFromGitLab, python, pkg-config
|
2017-03-16 22:01:29 +00:00
|
|
|
, xmlto, docbook2x, docbook_xsl, docbook_xml_dtd_412 }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "irker";
|
2017-03-16 22:01:29 +00:00
|
|
|
version = "2017-02-12";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = "esr";
|
|
|
|
repo = "irker";
|
|
|
|
rev = "dc0f65a7846a3922338e72d8c6140053fe914b54";
|
|
|
|
sha256 = "1hslwqa0gqsnl3l6hd5hxpn0wlachxd51infifhlwhyhd6iwgx8p";
|
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config xmlto docbook2x docbook_xsl docbook_xml_dtd_412 ];
|
2017-03-16 22:01:29 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
python
|
|
|
|
# Needed for proxy support I believe, which I haven't tested.
|
|
|
|
# Probably needs to be propagated and some wrapPython magic
|
|
|
|
# python.pkgs.pysocks
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace '-o 0 -g 0' ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"prefix=/"
|
|
|
|
"DESTDIR=$$out"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-03-16 22:01:29 +00:00
|
|
|
description = "IRC client that runs as a daemon accepting notification requests";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://gitlab.com/esr/irker";
|
2017-03-16 22:01:29 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|