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

25 lines
698 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-01-15 22:38:24 +01:00
buildGoModule rec {
pname = "cassowary";
2020-02-22 09:11:03 +01:00
version = "0.7.0";
2020-01-15 22:38:24 +01:00
src = fetchFromGitHub {
owner = "rogerwelin";
repo = pname;
2020-02-22 09:11:03 +01:00
rev = "v${version}";
sha256 = "0p5vcs25h5nj36dm9yjmdjymcq0zldm3zlqfppxcjx862h48k8zj";
2020-01-15 22:38:24 +01:00
};
vendorSha256 = "1m5jaqf5jrib415k0i7w6rf5bjjwfn572wk94jwfpwjcbbvh8fck";
2020-01-15 22:38:24 +01:00
2020-02-22 09:11:03 +01:00
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
meta = with lib; {
2020-01-15 22:38:24 +01:00
homepage = "https://github.com/rogerwelin/cassowary";
2020-02-22 09:11:03 +01:00
description = "Modern cross-platform HTTP load-testing tool written in Go";
2020-01-15 22:38:24 +01:00
license = licenses.mit;
maintainers = with maintainers; [ hugoreeves ];
platforms = platforms.unix;
};
}