3
0
Fork 0
forked from mirrors/nixpkgs

cassowary: init at v0.3.0

This commit is contained in:
Hugo Reeves 2020-01-16 10:38:24 +13:00 committed by Matthieu Coudron
parent 560f6943a2
commit 3697d7c523
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, }:
buildGoModule rec {
pname = "cassowary";
version = "0.3.0";
src = fetchFromGitHub {
owner = "rogerwelin";
repo = pname;
rev = "33b7e81a5d147980f4ddc689818df2b071f6ab4e";
sha256 = "01cdmh2v9rz8rna08hdsddllck6zp9wcrhxdy6hs77zfsbzyfflx";
};
modSha256 = "1iylnnmj5slji89pkb3shp4xqar1zbpl7bzwddbzpp8y52fmsv1c";
meta = with lib; {
homepage = "https://github.com/rogerwelin/cassowary";
description = "Modern cross-platform HTTP load-testing tool written in Go ";
license = licenses.mit;
maintainers = with maintainers; [ hugoreeves ];
platforms = platforms.unix;
};
}

View file

@ -1381,6 +1381,8 @@ in
ccnet = callPackage ../tools/networking/ccnet { };
cassowary = callPackage ../tools/networking/cassowary { };
croc = callPackage ../tools/networking/croc { };
cddl = callPackage ../development/tools/cddl { };