pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / tools / security / davtest / default.nix
blob226ead57ffdee14c8d278e4c2057bf9a4f2e0598
1 { lib, stdenv, perl, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "davtest";
5   version = "1.0";
7   src = fetchurl {
8     url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/davtest/davtest-${version}.tar.bz2";
9     sha256 = "0kigcgv1bbnan9yr5481s4b9islmvzl2arpg1ig1i39sxrna06y7";
10   };
12   postPatch = ''
13     substituteInPlace davtest.pl \
14       --replace "backdoors/" "$out/share/davtest/backdoors/" \
15       --replace "tests/" "$out/share/davtest/tests/"
16   '';
18   buildInputs = [
19     (perl.withPackages (p: with p; [ HTTPDAV ]))
20   ];
22   installPhase = ''
23     runHook preInstall
25     install -Dm755 davtest.pl $out/bin/davtest.pl
26     mkdir -p $out/share/davtest
27     cp -r backdoors/ tests/ $out/share/davtest/
29     runHook postInstall
30   '';
32   meta = with lib; {
33     description = "Tests WebDAV servers by uploading test files, and then optionally testing for command execution or other actions directly on the target";
34     homepage = "https://code.google.com/p/davtest/";
35     mainProgram = "davtest.pl";
36     license = licenses.gpl3Only;
37     maintainers = with maintainers; [ emilytrau ];
38     platforms = platforms.unix;
39   };