blob: e3bce225b46b3db4182fe9410e37935bb19173a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{ lib
, stdenv
, fetchFromGitHub
, callPackage
, rustPlatform
, substituteAll
, openssl
, Security
, python3Packages
}:
rustPlatform.buildRustPackage rec {
pname = "mitm-cache";
version = "0.1.1";
src = fetchFromGitHub {
owner = "chayleaf";
repo = "mitm-cache";
rev = "v${version}";
hash = "sha256-l9dnyA4Zo4jlbiCMRzUqW3NkiploVpmvxz9i896JkXU=";
};
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
Security
];
cargoHash = "sha256-6eYOSSlswJGR2IrFo17qVnwI+h2FkyTjLFvwf62nG2c=";
setupHook = substituteAll {
src = ./setup-hook.sh;
inherit openssl;
ephemeral_port_reserve = python3Packages.ephemeral-port-reserve;
};
passthru.fetch = callPackage ./fetch.nix { };
meta = with lib; {
description = "A MITM caching proxy for use in nixpkgs";
homepage = "https://github.com/chayleaf/mitm-cache#readme";
license = licenses.mit;
maintainers = with maintainers; [ chayleaf ];
mainProgram = "mitm-cache";
};
}
|