biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / dstp / default.nix
blobbbfac9b19941b3cb5effd157344aa6dd472c3c58
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "dstp";
5   version = "0.4.0";
7   src = fetchFromGitHub {
8     owner = "ycd";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-YvuUgHHa8Egk+bbSI0SH0i3YrKWRbzjAckNG32RBRXw=";
12   };
14   vendorHash = "sha256-qNH71MPKOC0ld7xxppjZrHSTJ6t8E0LljM1OzT7pM9g=";
16   # Tests require network connection, but is not allowed by nix
17   doCheck = false;
19   meta = with lib; {
20     description = "Run common networking tests against your site";
21     mainProgram = "dstp";
22     homepage = "https://github.com/ycd/dstp";
23     license = licenses.mit;
24     maintainers = with maintainers; [ jlesquembre ];
25   };