Skip to content

Commit cccb203

Browse files
committed
agnos: init at 0.1.0
1 parent 2961e00 commit cccb203

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

pkgs/by-name/ag/agnos/package.nix

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
fetchFromGitHub,
3+
lib,
4+
nixosTests,
5+
rustPlatform,
6+
openssl,
7+
pkg-config,
8+
}:
9+
rustPlatform.buildRustPackage rec {
10+
pname = "agnos";
11+
version = "0.1.0";
12+
13+
src = fetchFromGitHub {
14+
owner = "krtab";
15+
repo = "agnos";
16+
rev = "v${version}";
17+
hash = "sha256-hSiJvpTQIbhz/0AFBTvgfRDTqOi9YcDOvln15SksMJs=";
18+
};
19+
20+
cargoHash = "sha256-wmnfAvtTjioslSdD6z0mMl3Hz46wpPYMk494r9xXj44=";
21+
22+
buildInputs = [ openssl ];
23+
nativeBuildInputs = [ pkg-config ];
24+
25+
meta = with lib; {
26+
description = "Obtains certificates from Let's Encrypt using DNS-01 without the need for API access to the DNS provider";
27+
homepage = "https://github.com/krtab/agnos";
28+
license = licenses.mit;
29+
maintainers = with maintainers; [ justinas ];
30+
};
31+
}

0 commit comments

Comments
 (0)