Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f87a18bde2d3
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b2b5c1d5af2a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on May 1, 2019

  1. testssl: 2.9.5-7 -> 2.9.5-8

    etu committed May 1, 2019
    Copy the full SHA
    4323cf2 View commit details
  2. Merge pull request #60657 from etu/backport-testssl-upgrades

    [19.03] testssl: 2.9.5-7 -> 2.9.5-8
    etu authored May 1, 2019
    Copy the full SHA
    b2b5c1d View commit details
Showing with 7 additions and 11 deletions.
  1. +7 −11 pkgs/applications/networking/testssl/default.nix
18 changes: 7 additions & 11 deletions pkgs/applications/networking/testssl/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
{ stdenv, fetchFromGitHub, makeWrapper, lib
, dnsutils, coreutils, openssl, nettools, utillinux, procps }:

let
version = "2.9.5-7";

in stdenv.mkDerivation rec {
name = "testssl.sh-${version}";
stdenv.mkDerivation rec {
pname = "testssl.sh";
version = "2.9.5-8";

src = fetchFromGitHub {
owner = "drwetter";
repo = "testssl.sh";
rev = "v${version}";
sha256 = "02xp0yi53xf6jw6v633zs2ws2iyyvq3mlkimg0cv3zvj7nw9x5wr";
sha256 = "1fpakzm2gsv8yva58s23lhlgxkkvi3pixil2mjrlkmr0qk66rc32";
};

nativeBuildInputs = [ makeWrapper ];
@@ -31,12 +29,10 @@ in stdenv.mkDerivation rec {
'';

installPhase = ''
install -Dt $out/bin testssl.sh
wrapProgram $out/bin/testssl.sh \
--prefix PATH ':' ${lib.makeBinPath buildInputs}
install -D testssl.sh $out/bin/testssl.sh
cp -r etc $out
wrapProgram $out/bin/testssl.sh --prefix PATH ':' ${lib.makeBinPath buildInputs}
'';

meta = with stdenv.lib; {