nixpkgs/pkgs/applications/networking/localproxy/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.7 KiB
Nix
Raw Permalink Normal View History

2023-07-26 17:21:22 +02:00
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
2023-07-26 17:21:22 +02:00
, cmake
, openssl
, protobuf_21
2023-07-26 17:21:22 +02:00
, catch2
, boost181
, icu
}:
let
boost = boost181.override { enableStatic = true; };
protobuf = protobuf_21.override { enableShared = false; };
2023-07-26 17:21:22 +02:00
in
stdenv.mkDerivation (finalAttrs: {
pname = "localproxy";
2023-12-22 07:15:32 +01:00
version = "3.1.1";
2023-07-26 17:21:22 +02:00
2023-09-20 16:28:35 +02:00
src = fetchFromGitHub {
owner = "aws-samples";
repo = "aws-iot-securetunneling-localproxy";
rev = "v${finalAttrs.version}";
2023-12-22 07:15:32 +01:00
hash = "sha256-voUKfXa43mOltePQEXgmJ2EBaN06E6R/2Zz6O09ogyY=";
2023-09-20 16:28:35 +02:00
};
2023-07-26 17:21:22 +02:00
patches = [
# gcc-13 compatibility fix:
# https://github.com/aws-samples/aws-iot-securetunneling-localproxy/pull/136
(fetchpatch {
name = "gcc-13-part-1.patch";
url = "https://github.com/aws-samples/aws-iot-securetunneling-localproxy/commit/f6ba73eaede61841534623cdb01b69d793124f4b.patch";
hash = "sha256-sB9GuEuHLyj6DXNPuYAMibUJXdkThKbS/fxvnJU3rS4=";
})
(fetchpatch {
name = "gcc-13-part-2.patch";
url = "https://github.com/aws-samples/aws-iot-securetunneling-localproxy/commit/de8779630d14e4f4969c9b171d826acfa847822b.patch";
hash = "sha256-11k6mRvCx72+5G/5LZZx2qnx10yfKpcAZofn8t8BD3E=";
})
];
2023-07-26 17:21:22 +02:00
nativeBuildInputs = [ cmake ];
2023-09-20 16:28:35 +02:00
buildInputs = [ openssl protobuf catch2 boost icu ];
2023-07-26 17:21:22 +02:00
# causes redefinition of _FORTIFY_SOURCE
hardeningDisable = [ "fortify3" ];
2023-09-20 16:28:35 +02:00
meta = with lib; {
description = "AWS IoT Secure Tunneling Local Proxy Reference Implementation C++";
homepage = "https://github.com/aws-samples/aws-iot-securetunneling-localproxy";
license = licenses.asl20;
maintainers = with maintainers; [ spalf ];
platforms = platforms.unix;
2023-11-27 02:17:53 +01:00
mainProgram = "localproxy";
2023-09-20 16:28:35 +02:00
};
})