Merge pull request #145475 from jlesquembre/dstp

dstp: init at 0.3.0
This commit is contained in:
Jörg Thalheim 2021-11-13 11:26:00 +00:00 committed by GitHub
commit 89b568491a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib, buildGo117Module, fetchFromGitHub }:
buildGo117Module rec {
pname = "dstp";
version = "0.3.0";
src = fetchFromGitHub {
owner = "ycd";
repo = pname;
rev = "v${version}";
sha256 = "1pxzaz2a261lsnbdbr9km1214a4jzq2wgkdfvf9g966gsa4nqfl6";
};
vendorSha256 = "1n1kx4zcskndikjl44vwmckr6x5cv6cacwdwfwjjsf6aqgagpld8";
# Tests require network connection, but is not allowed by nix
doCheck = false;
meta = with lib; {
description = "Run common networking tests against your site";
homepage = "https://github.com/ycd/dstp";
license = licenses.mit;
maintainers = with maintainers; [ jlesquembre ];
};
}

View File

@ -2762,6 +2762,8 @@ with pkgs;
gtk = gtk3;
};
dstp = callPackage ../development/tools/dstp { };
dsvpn = callPackage ../applications/networking/dsvpn { };
dtools = callPackage ../development/tools/dtools { };