nixpkgs/pkgs/tools/package-management/apt-dater/default.nix
Sergei Trofimovich e50546bf2b apt-dater: pull missing xxd dependency
`xxd` was recently moved out of `vim` to `xxd` package. As a result
`apt-dater` started failing the build as
https://hydra.nixos.org/build/247714641:

    xxd -i apt-dater.xml > apt-dater.xml.inc
    bash: line 1: xxd: command not found

The change pulls in missing `xxd` dependency.
2024-01-29 23:09:21 +00:00

51 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub
, autoreconfHook, pkg-config, gettext
, xxd, glib, libxml2, ncurses, popt, screen
}:
stdenv.mkDerivation rec {
pname = "apt-dater";
version = "1.0.4";
src = fetchFromGitHub {
owner = "DE-IBH";
repo = "apt-dater";
rev = "v${version}";
sha256 = "1r6gz9jkh1wxi11mcq5p9mqg0szclsaq8ic79vnfnbjdrmmdfi4y";
};
nativeBuildInputs = [
pkg-config autoreconfHook gettext xxd
];
buildInputs = [
libxml2 ncurses glib popt screen
];
configureFlags = [ "--disable-history" ];
prePatch = ''
substituteInPlace etc/Makefile.am \
--replace 02770 0770
'';
postPatch = ''
substituteInPlace configure.ac \
--replace "/usr/bin/screen" "${screen}/bin/screen"
'';
doCheck = true;
meta = with lib; {
homepage = "https://github.com/DE-IBH/apt-dater";
description = "Terminal-based remote package update manager";
longDescription = ''
Provides an ncurses frontend for managing package updates on a large
number of remote hosts using SSH. It supports Debian-based managed hosts
as well as rug (e.g. openSUSE) and yum (e.g. CentOS) based systems.
'';
license = licenses.gpl2Plus;
maintainers = with maintainers; [ c0bw3b ];
};
}