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.
This commit is contained in:
Sergei Trofimovich 2024-01-29 23:09:21 +00:00
parent 3b02018161
commit e50546bf2b

View file

@ -1,6 +1,6 @@
{ lib, stdenv, fetchFromGitHub { lib, stdenv, fetchFromGitHub
, autoreconfHook, pkg-config, gettext , autoreconfHook, pkg-config, gettext
, vim, glib, libxml2, ncurses, popt, screen , xxd, glib, libxml2, ncurses, popt, screen
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -15,11 +15,11 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ nativeBuildInputs = [
pkg-config autoreconfHook gettext pkg-config autoreconfHook gettext xxd
]; ];
buildInputs = [ buildInputs = [
libxml2 ncurses vim glib popt screen libxml2 ncurses glib popt screen
]; ];
configureFlags = [ "--disable-history" ]; configureFlags = [ "--disable-history" ];