mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
dirb: init at 2.22
This commit is contained in:
parent
b1df5bf89b
commit
0e78ed82bf
30
pkgs/tools/networking/dirb/default.nix
Normal file
30
pkgs/tools/networking/dirb/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ fetchurl, stdenv, automake, autoconf, curl, autoreconfHook }:
|
||||
|
||||
let
|
||||
major = "2";
|
||||
minor = "22";
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "dirb-${version}";
|
||||
version = "${major}.${minor}";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/dirb/${version}/dirb${major}${minor}.tar.gz";
|
||||
sha256 = "0b7wc2gvgnyp54rxf1n9arn6ymrvdb633v6b3ah138hw4gg8lx7k";
|
||||
};
|
||||
|
||||
unpackPhase = ''
|
||||
tar -xf $src
|
||||
find . -exec chmod +x "{}" ";"
|
||||
export sourceRoot="dirb222"
|
||||
'';
|
||||
|
||||
buildInputs = [ automake autoconf curl ];
|
||||
preConfigure = "chmod +x configure";
|
||||
|
||||
meta = {
|
||||
description = "A web content scanner";
|
||||
homepage = "http://dirb.sourceforge.net/";
|
||||
maintainers = with stdenv.lib.maintainers; [ bennofs ];
|
||||
license = with stdenv.lib.licenses; [ gpl2 ];
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
@ -790,6 +790,8 @@ in
|
||||
aspellDicts_en = aspellDicts.en;
|
||||
};
|
||||
|
||||
dirb = callPackage ../tools/networking/dirb { };
|
||||
|
||||
direnv = callPackage ../tools/misc/direnv { };
|
||||
|
||||
discount = callPackage ../tools/text/discount { };
|
||||
|
Loading…
Reference in New Issue
Block a user