nixpkgs/pkgs/development/tools/dstp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
643 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2021-11-11 11:07:39 +00:00
buildGoModule rec {
2021-11-11 11:07:39 +00:00
pname = "dstp";
2021-12-09 08:39:03 +00:00
version = "0.4.0";
2021-11-11 11:07:39 +00:00
src = fetchFromGitHub {
owner = "ycd";
repo = pname;
rev = "v${version}";
2021-12-09 08:39:03 +00:00
sha256 = "sha256-YvuUgHHa8Egk+bbSI0SH0i3YrKWRbzjAckNG32RBRXw=";
2021-11-11 11:07:39 +00:00
};
2021-12-09 08:39:03 +00:00
vendorSha256 = "sha256-qNH71MPKOC0ld7xxppjZrHSTJ6t8E0LljM1OzT7pM9g=";
2021-11-11 11:07:39 +00:00
# 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 ];
};
}