apt-dater: init at 1.0.3 (#32175)

* apt-dater: init at 1.0.3

* apt-dater: use autoreconfHook
This commit is contained in:
Tim 2018-10-26 19:16:44 +02:00 committed by Renaud
parent 145627391b
commit 8d49637658
2 changed files with 52 additions and 0 deletions

View file

@ -0,0 +1,50 @@
{ stdenv, fetchFromGitHub
, autoreconfHook, pkgconfig, gettext
, vim, glib, libxml2, openssl, ncurses, popt, screen
}:
stdenv.mkDerivation rec {
name = "apt-dater-${version}";
version = "1.0.3";
src = fetchFromGitHub {
owner = "DE-IBH";
repo = "apt-dater";
rev = "v${version}";
sha256 = "1flr6cm72cywmwp5h7pbmmpq057xsi9shkczyplxqaqrb2gns5fl";
};
nativeBuildInputs = [
pkgconfig autoreconfHook gettext
];
buildInputs = [
libxml2 ncurses vim 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 stdenv.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 ];
};
}

View file

@ -635,6 +635,8 @@ with pkgs;
stdenv = overrideCC stdenv gcc5;
};
apt-dater = callPackage ../tools/package-management/apt-dater { };
autorevision = callPackage ../tools/misc/autorevision { };
bcachefs-tools = callPackage ../tools/filesystems/bcachefs-tools { };