mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
366bf3a309
/cc ZHF #36454
31 lines
774 B
Nix
31 lines
774 B
Nix
{ stdenv, fetchurl, gettext, libgpgerror, libgcrypt, libksba, zlib }:
|
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ntbtls-${version}";
|
|
version = "0.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/ntbtls/ntbtls-${version}.tar.bz2";
|
|
sha256 = "1rywgdyj7prmwdi5r1rpglakqpnjskgln1mqksqm28qcwn2dnh42";
|
|
};
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
buildInputs = [ libgcrypt libgpgerror libksba zlib ]
|
|
++ stdenv.lib.optional stdenv.isDarwin gettext;
|
|
|
|
postInstall = ''
|
|
moveToOutput "bin/ntbtls-config" $dev
|
|
'';
|
|
|
|
meta = {
|
|
description = "A tiny TLS 1.2 only implementation";
|
|
homepage = "https://www.gnupg.org/software/ntbtls/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ joachifm ];
|
|
};
|
|
}
|