Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1144ee553852
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: aada254bc83c
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Jan 31, 2020

  1. vegeta: init at 12.7.0

    mmahut committed Jan 31, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    dd5b64a View commit details
  2. Merge pull request #78948 from mmahut/vegeta

    vegeta: init at 12.7.0
    mmahut authored Jan 31, 2020
    Copy the full SHA
    aada254 View commit details
Showing with 273 additions and 0 deletions.
  1. +25 −0 pkgs/tools/networking/vegeta/default.nix
  2. +246 −0 pkgs/tools/networking/vegeta/deps.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
25 changes: 25 additions & 0 deletions pkgs/tools/networking/vegeta/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ lib, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
pname = "vegeta";
version = "12.7.0";

src = fetchFromGitHub {
owner = "tsenart";
repo = pname;
rev = "v${version}";
sha256 = "1wzx9588hjzxq65fxi1zz9xpsw33qq41hpl0j2f077g4m8yxahv5";
};

goPackagePath = "github.com/tsenart/${pname}";

goDeps = ./deps.nix;

meta = with lib; {
description = "Versatile HTTP load testing tool";
license = licenses.mit;
homepage = "https://github.com/tsenart/vegeta/";
maintainers = [ maintainers.mmahut ];
};
}

246 changes: 246 additions & 0 deletions pkgs/tools/networking/vegeta/deps.nix

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -17975,6 +17975,8 @@ in

vegur = callPackage ../data/fonts/vegur { };

vegeta = callPackage ../tools/networking/vegeta { };

victor-mono = callPackage ../data/fonts/victor-mono { };

vistafonts = callPackage ../data/fonts/vista-fonts { };