2021-05-23 12:12:56 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, libseccomp
|
2024-01-23 23:38:46 +00:00
|
|
|
, libsodium
|
2021-05-23 12:12:56 +01:00
|
|
|
, pkg-config
|
2024-01-23 23:38:46 +00:00
|
|
|
, pkgs
|
|
|
|
, sqlite
|
|
|
|
, stdenv
|
2020-06-24 01:39:06 +01:00
|
|
|
}:
|
2020-04-15 08:20:46 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "sn0int";
|
2023-09-10 09:27:55 +01:00
|
|
|
version = "0.26.0";
|
2020-04-15 08:20:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kpcyrd";
|
|
|
|
repo = pname;
|
2023-02-12 11:48:28 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-09-10 09:27:55 +01:00
|
|
|
hash = "sha256-ze4OFKUuc/t6tXgmoWFFDjpAQraSY6RIekkcDBctPJo=";
|
2020-04-15 08:20:46 +01:00
|
|
|
};
|
|
|
|
|
2023-09-10 09:27:55 +01:00
|
|
|
cargoHash = "sha256-PAKmoifqB1YC02fVF2SRbXAAGrMcB+Wlvr3FwuqmPVU=";
|
2020-04-15 08:20:46 +01:00
|
|
|
|
2021-05-23 12:12:56 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
];
|
2020-04-15 08:20:46 +01:00
|
|
|
|
2021-05-23 12:12:56 +01:00
|
|
|
buildInputs = [
|
|
|
|
libsodium
|
|
|
|
sqlite
|
2024-01-23 23:38:46 +00:00
|
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
|
|
libseccomp
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
pkgs.darwin.apple_sdk.frameworks.Security
|
2021-05-23 12:12:56 +01:00
|
|
|
];
|
2020-04-15 08:20:46 +01:00
|
|
|
|
|
|
|
# One of the dependencies (chrootable-https) tries to read "/etc/resolv.conf"
|
|
|
|
# in "checkPhase", hence fails in sandbox of "nix".
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Semi-automatic OSINT framework and package manager";
|
|
|
|
homepage = "https://github.com/kpcyrd/sn0int";
|
2023-02-12 11:48:28 +00:00
|
|
|
changelog = "https://github.com/kpcyrd/sn0int/releases/tag/v${version}";
|
2021-01-09 22:20:25 +00:00
|
|
|
license = with licenses; [ gpl3Plus ];
|
2023-02-12 11:48:56 +00:00
|
|
|
maintainers = with maintainers; [ fab xrelkd ];
|
2024-01-23 23:38:46 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2020-04-15 08:20:46 +01:00
|
|
|
};
|
|
|
|
}
|