python312Packages.fastembed: unpin pillow (#358505)
[NixPkgs.git] / pkgs / tools / package-management / apt-dater / default.nix
blobec9c53f7d78c46d104c7b43030aec51204279b59
1 { lib, stdenv, fetchFromGitHub
2 , autoreconfHook, pkg-config, gettext
3 , xxd, glib, libxml2, ncurses, popt, screen
4 }:
6 stdenv.mkDerivation rec {
7   pname = "apt-dater";
8   version = "1.0.4";
10   src = fetchFromGitHub {
11     owner = "DE-IBH";
12     repo = "apt-dater";
13     rev = "v${version}";
14     sha256 = "1r6gz9jkh1wxi11mcq5p9mqg0szclsaq8ic79vnfnbjdrmmdfi4y";
15   };
17   nativeBuildInputs = [
18     pkg-config autoreconfHook gettext xxd
19   ];
21   buildInputs = [
22     libxml2 ncurses glib popt screen
23   ];
25   configureFlags = [ "--disable-history" ];
27   prePatch = ''
28     substituteInPlace etc/Makefile.am \
29       --replace 02770 0770
30   '';
32   postPatch = ''
33     substituteInPlace configure.ac \
34       --replace "/usr/bin/screen" "${screen}/bin/screen"
35   '';
37   doCheck = true;
39   meta = with lib; {
40     homepage = "https://github.com/DE-IBH/apt-dater";
41     description = "Terminal-based remote package update manager";
42     longDescription = ''
43       Provides an ncurses frontend for managing package updates on a large
44       number of remote hosts using SSH. It supports Debian-based managed hosts
45       as well as rug (e.g. openSUSE) and yum (e.g. CentOS) based systems.
46     '';
47     license = licenses.gpl2Plus;
48     maintainers = with maintainers; [ c0bw3b ];
49   };