Merge pull request #223946 from rhendric/rhendric/alpine
alpine: 2.25 -> 2.26
This commit is contained in:
commit
e863220fb9
1 changed files with 11 additions and 8 deletions
|
@ -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/";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue