4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitLab, python, pkgconfig
|
|
, xmlto, docbook2x, docbook_xsl, docbook_xml_dtd_412 }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "irker";
|
|
version = "2017-02-12";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "esr";
|
|
repo = "irker";
|
|
rev = "dc0f65a7846a3922338e72d8c6140053fe914b54";
|
|
sha256 = "1hslwqa0gqsnl3l6hd5hxpn0wlachxd51infifhlwhyhd6iwgx8p";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig xmlto docbook2x docbook_xsl docbook_xml_dtd_412 ];
|
|
|
|
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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "IRC client that runs as a daemon accepting notification requests";
|
|
homepage = "https://gitlab.com/esr/irker";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ dtzWill ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|