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:
parent
3b02018161
commit
e50546bf2b
1 changed files with 3 additions and 3 deletions
|
@ -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" ];
|
||||||
|
|
Loading…
Reference in a new issue