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: f0c4c0bc7b8b
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 817deba40d79
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on May 24, 2020

  1. k6: 0.24.0 -> 0.26.2

    dywedir committed May 24, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    e2712f3 View commit details

Commits on May 28, 2020

  1. Merge pull request #88794 from dywedir/k6

    k6: 0.24.0 -> 0.26.2
    offlinehacker authored May 28, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veehaitch Vincent Haupert
    Copy the full SHA
    817deba View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/tools/k6/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/tools/k6/default.nix
Original file line number Diff line number Diff line change
@@ -2,22 +2,23 @@

buildGoPackage rec {
pname = "k6";
version = "0.24.0";
version = "0.26.2";

goPackagePath = "github.com/loadimpact/k6";

src = fetchFromGitHub {
owner = "loadimpact";
repo = pname;
rev = "v${version}";
sha256 = "1riyyi4lxdaqilzzkxzzw3hzcrjjcylq2jh3p3656f99wiisvj28";
sha256 = "0s5haycpfnfyvxxhhm7205gzylsbjndx9f134f245p4xm5bxhxbf";
};

subPackages = [ "./" ];

meta = with stdenv.lib; {
homepage = "https://k6.io/";
description = "A modern load testing tool, using Go and JavaScript";
homepage = "https://k6.io/";
changelog = "https://github.com/loadimpact/k6/releases/tag/v${version}";
license = licenses.agpl3Plus;
maintainers = with maintainers; [ offline ];
};