nixpkgs/pkgs/development/libraries/ntbtls/default.nix

29 lines
755 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, gettext, libgpg-error, libgcrypt, libksba, zlib }:
2017-08-24 13:08:15 +01:00
stdenv.mkDerivation rec {
pname = "ntbtls";
2021-01-30 19:25:36 +00:00
version = "0.2.0";
2017-08-24 13:08:15 +01:00
src = fetchurl {
url = "mirror://gnupg/ntbtls/ntbtls-${version}.tar.bz2";
2021-01-30 19:25:36 +00:00
sha256 = "sha256-ZJ/nSjEdE+Q7FrJuuqkWZd22MpJbc5AlkurD7TBRnhc=";
2017-08-24 13:08:15 +01:00
};
outputs = [ "dev" "out" ];
buildInputs = [ libgcrypt libgpg-error libksba zlib ]
++ lib.optional stdenv.isDarwin gettext;
2017-08-24 13:08:15 +01:00
postInstall = ''
moveToOutput "bin/ntbtls-config" $dev
'';
2021-10-07 21:22:17 +01:00
meta = with lib; {
2017-08-24 13:08:15 +01:00
description = "A tiny TLS 1.2 only implementation";
2018-03-11 00:33:41 +00:00
homepage = "https://www.gnupg.org/software/ntbtls/";
2017-08-24 13:08:15 +01:00
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ joachifm ];
};
}