File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments