blob: 583671f38433faa9a35ddc28e6744e4b571ebb3c (
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
|
{
lib,
rustPlatform,
fetchCrate,
stdenv,
darwin,
openssl,
}:
rustPlatform.buildRustPackage rec {
pname = "kanha";
version = "0.1.2";
src = fetchCrate {
inherit version;
pname = "kanha";
hash = "sha256-ftTmYCkra3x/oDgGJ2WSf6yLeKXkwLJXhjuBdv7fVLY=";
};
cargoHash = "sha256-kjHLc+qWo5dB4qbdlIWzk/pjpghRaDcX/7kkjEM219c=";
buildInputs =
[ openssl ]
++ lib.optionals stdenv.hostPlatform.isDarwin (
with darwin.apple_sdk.frameworks;
[
Security
CoreFoundation
SystemConfiguration
]
);
meta = {
description = "Web-app pentesting suite written in rust";
homepage = "https://github.com/pwnwriter/kanha";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pwnwriter ];
mainProgram = "kanha";
};
}
|