blob: 72a1d87f1112bb330faefd3cca02a259a13119f9 (
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
45
46
47
48
49
50
|
{ lib
, rustPlatform
, fetchFromGitHub
, cmake
, pkg-config
, openssl
, hyperscan
}:
rustPlatform.buildRustPackage rec {
pname = "noseyparker";
version = "0.12.0";
src = fetchFromGitHub {
owner = "praetorian-inc";
repo = "noseyparker";
rev = "v${version}";
hash = "sha256-qop6KjTFPQ5o1kPEVPP0AfDfr8w/JP3YmC+sb5OUbDY=";
};
cargoHash = "sha256-ZtoJO/R11qTFYAE6G7AVCpnYZ3JGrxtVSXvCm0W8DAA=";
postPatch = ''
# disabledTests (network, failing)
rm tests/test_noseyparker_github.rs
rm tests/test_noseyparker_scan.rs
'';
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
openssl
hyperscan
];
OPENSSL_NO_VENDOR = 1;
meta = with lib; {
description = "Find secrets and sensitive information in textual data";
mainProgram = "noseyparker";
homepage = "https://github.com/praetorian-inc/noseyparker";
changelog = "https://github.com/praetorian-inc/noseyparker/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ _0x4A6F ];
# limited by hyperscan
platforms = [ "x86_64-linux" ];
};
}
|