Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
782 B
Nix
34 lines
782 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "dmitry";
|
|
version = "1.3a-unstable-2020-06-22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jaygreig86";
|
|
repo = "dmitry";
|
|
rev = "f3ae08d4242e3e178271c827b86ff0d655972280";
|
|
hash = "sha256-cYFeBM8xFMaLXYk6Rg+5JvfbbIJI9F3mefzCX3+XbB0=";
|
|
};
|
|
|
|
patches = [ ./implicit-function-declaration.patch ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [ "-fcommon" ];
|
|
|
|
meta = {
|
|
description = "Deepmagic Information Gathering Tool";
|
|
mainProgram = "dmitry";
|
|
homepage = "https://github.com/jaygreig86/dmitry";
|
|
maintainers = with lib.maintainers; [ d3vil0p3r ];
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|