nixpkgs/pkgs/tools/security/cipherscan/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, openssl, makeWrapper, python, coreutils }:
stdenv.mkDerivation rec {
pname = "cipherscan";
2016-09-04 05:26:00 +00:00
version = "2016-08-16";
src = fetchFromGitHub {
2016-09-04 05:26:00 +00:00
owner = "mozilla";
repo = "cipherscan";
2016-09-04 05:26:00 +00:00
rev = "74dd82e8ad994a140daf79489d3bd1c5ad928d38";
sha256 = "16azhlmairnvdz7xmwgvfpn2pzw1p8z7c9b27m07fngqjkpx0mhh";
};
2016-09-04 05:26:00 +00:00
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ python ];
buildPhase = ''
2016-09-04 05:26:00 +00:00
substituteInPlace cipherscan --replace '$0' 'cipherscan'
'';
2016-09-04 05:26:00 +00:00
installPhase = ''
mkdir -p $out/bin
cp cipherscan $out/bin
cp openssl.cnf $out/bin
2016-09-04 05:26:00 +00:00
cp analyze.py $out/bin/cipherscan-analyze
2016-09-04 05:26:00 +00:00
wrapProgram $out/bin/cipherscan \
--set NOAUTODETECT 1 \
--set TIMEOUTBIN "${coreutils}/bin/timeout" \
--set OPENSSLBIN "${openssl}/bin/openssl"
'';
2016-09-04 05:26:00 +00:00
meta = with lib; {
2016-09-04 05:26:00 +00:00
inherit (src.meta) homepage;
description = "Very simple way to find out which SSL ciphersuites are supported by a target";
license = licenses.mpl20;
platforms = platforms.all;
2016-09-04 05:26:00 +00:00
maintainers = with maintainers; [ cstrahan fpletz ];
};
}