forked from mirrors/nixpkgs
Merge pull request #175142 from fabaff/acme-client-bump
acme-client: 1.2.0 -> 1.3.0
This commit is contained in:
commit
a78bc4244e
|
@ -1,31 +1,39 @@
|
|||
{ lib, stdenv
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, libbsd
|
||||
, libressl
|
||||
, pkg-config
|
||||
}:
|
||||
|
||||
with lib;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "acme-client";
|
||||
version = "1.2.0";
|
||||
version = "1.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://data.wolfsden.cz/sources/acme-client-${version}.tar.xz";
|
||||
sha256 = "sha256-fRSYwQmyV0WapjUJNG0UGO/tUDNTGUraj/BWq/a1QTo=";
|
||||
url = "https://data.wolfsden.cz/sources/acme-client-${version}.tar.gz";
|
||||
hash = "sha256-rIeWZSOT+nPzLf2mDtOkN/wmCGffG4H6PCQb2Vxbxxk=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ libbsd libressl ];
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
||||
buildInputs = [
|
||||
libbsd
|
||||
libressl
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://sr.ht/~graywolf/acme-client-portable/";
|
||||
makeFlags = [
|
||||
"PREFIX=${placeholder "out"}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Secure ACME/Let's Encrypt client";
|
||||
homepage = "https://sr.ht/~graywolf/acme-client-portable/";
|
||||
platforms = platforms.unix;
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ pmahoney ];
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue