Skip to content

Commit

Permalink
Merge pull request #320346 from heywoodlh/dnsmap
Browse files Browse the repository at this point in the history
dnsmap: init at 0.36-unstable-2024-08-20
  • Loading branch information
superherointj authored Aug 21, 2024
2 parents 15f967f + a104818 commit 841a0c1
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pkgs/by-name/dn/dnsmap/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
lib,
stdenv,
fetchFromGitHub,
autoconf,
automake,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "dnsmap";
tag = "0.36";
version = "${finalAttrs.tag}-unstable-2024-08-20";

src = fetchFromGitHub {
owner = "resurrecting-open-source-projects";
repo = "dnsmap";
rev = "b5b4b1a7764e141f2551584d9fad3a973951eafe";
hash = "sha256-RTZe0kb/Fq9kIdnHQO//OP+Uop2Z5r22Z7+rQdCFsl4=";
};

strictDeps = true;

preConfigure = ''
autoreconf -i
'';

configureFlags = [ "--prefix=$(out)" ];

nativeBuildInputs = [
autoconf
automake
];

meta = {
description = "Scan for subdomains using brute-force techniques";
homepage = "https://github.com/resurrecting-open-source-projects/dnsmap";
license = lib.licenses.gpl3;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ heywoodlh ];
changelog = "https://github.com/resurrecting-open-source-projects/dnsmap/releases/tag/${finalAttrs.tag}";
mainProgram = "dnsmap";
};
})

0 comments on commit 841a0c1

Please sign in to comment.