Merge pull request #223946 from rhendric/rhendric/alpine

alpine: 2.25 -> 2.26
This commit is contained in:
7c6f434c 2023-04-03 14:27:13 +00:00 committed by GitHub
commit e863220fb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,15 @@
{lib, stdenv, fetchurl, ncurses, tcl, openssl, pam, libkrb5
, openldap, libxcrypt
{ lib, stdenv, fetchgit, ncurses, tcl, openssl, pam, libkrb5
, openldap, libxcrypt, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "alpine";
version = "2.25";
version = "2.26";
src = fetchurl {
url = "http://alpine.x10host.com/alpine/release/src/${pname}-${version}.tar.xz";
sha256 = "0xppxhcbafq9qa1rns5zl0n238gai08xhvcf2as0nx7nh84ib2k5";
src = fetchgit {
url = "https://repo.or.cz/alpine.git";
rev = "v${version}";
hash = "sha256-cJyUBatQBjD6RG+jesJ0JRhWghPRBACc/HQl+2aCTd0=";
};
buildInputs = [
@ -23,11 +24,13 @@ stdenv.mkDerivation rec {
"--with-c-client-target=slx"
];
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
meta = with lib; {
description = "Console mail reader";
license = licenses.asl20;
maintainers = with maintainers; [ raskin ];
maintainers = with maintainers; [ raskin rhendric ];
platforms = platforms.linux;
homepage = "http://alpine.x10host.com/";
homepage = "https://alpineapp.email/";
};
}