ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / dn / dnsmap / package.nix
blob1d72d26f239065202e667578858ea5c84193f43a
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   autoconf,
6   automake,
7 }:
9 stdenv.mkDerivation (finalAttrs: {
10   pname = "dnsmap";
11   tag = "0.36";
12   version = "${finalAttrs.tag}-unstable-2024-08-20";
14   src = fetchFromGitHub {
15     owner = "resurrecting-open-source-projects";
16     repo = "dnsmap";
17     rev = "b5b4b1a7764e141f2551584d9fad3a973951eafe";
18     hash = "sha256-RTZe0kb/Fq9kIdnHQO//OP+Uop2Z5r22Z7+rQdCFsl4=";
19   };
21   strictDeps = true;
23   preConfigure = ''
24     autoreconf -i
25   '';
27   configureFlags = [ "--prefix=$(out)" ];
29   nativeBuildInputs = [
30     autoconf
31     automake
32   ];
34   meta = {
35     description = "Scan for subdomains using brute-force techniques";
36     homepage = "https://github.com/resurrecting-open-source-projects/dnsmap";
37     license = lib.licenses.gpl3;
38     platforms = lib.platforms.all;
39     maintainers = with lib.maintainers; [ heywoodlh ];
40     changelog = "https://github.com/resurrecting-open-source-projects/dnsmap/releases/tag/${finalAttrs.tag}";
41     mainProgram = "dnsmap";
42   };