nixpkgs/pkgs/tools/networking/cassowary/default.nix

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

26 lines
685 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-01-16 00:38:24 +03:00
buildGoModule rec {
pname = "cassowary";
2021-03-13 06:02:03 +03:00
version = "0.14.0";
2020-01-16 00:38:24 +03:00
src = fetchFromGitHub {
owner = "rogerwelin";
repo = pname;
2020-02-22 11:11:03 +03:00
rev = "v${version}";
2021-03-13 06:02:03 +03:00
sha256 = "sha256-rQNrxAKf2huY9I6iqdf1iYxgXaQI0LG1Lkrnv1OuJsg=";
2020-01-16 00:38:24 +03:00
};
2021-03-13 06:02:03 +03:00
vendorSha256 = "sha256-hGpiL88x2roFEjJJM4CKyt3k66VK1pEnpOwvhDPDp6M=";
2020-01-16 00:38:24 +03:00
2021-08-26 09:45:51 +03:00
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
2020-02-22 11:11:03 +03:00
meta = with lib; {
2020-01-16 00:38:24 +03:00
homepage = "https://github.com/rogerwelin/cassowary";
2020-02-22 11:11:03 +03:00
description = "Modern cross-platform HTTP load-testing tool written in Go";
2020-01-16 00:38:24 +03:00
license = licenses.mit;
maintainers = with maintainers; [ hugoreeves ];
platforms = platforms.unix;
};
}