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: cab3652660c5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0ea34f70c35c
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Oct 14, 2019

  1. linuxPackages.bcc: 0.10.0 -> 0.11.0

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed Oct 14, 2019
    Copy the full SHA
    288c2de View commit details
  2. linuxPackages.bpftrace: 0.9.1 -> 0.9.2

    Signed-off-by: Austin Seipp <aseipp@pobox.com>
    thoughtpolice committed Oct 14, 2019
    Copy the full SHA
    0ea34f7 View commit details
Showing with 6 additions and 6 deletions.
  1. +4 −4 pkgs/os-specific/linux/bcc/default.nix
  2. +2 −2 pkgs/os-specific/linux/bpftrace/default.nix
8 changes: 4 additions & 4 deletions pkgs/os-specific/linux/bcc/default.nix
Original file line number Diff line number Diff line change
@@ -4,15 +4,15 @@
}:

python.pkgs.buildPythonApplication rec {
version = "0.10.0";
version = "0.11.0";
name = "bcc-${version}";

srcs = [
(fetchFromGitHub {
owner = "iovisor";
repo = "bcc";
rev = "v${version}";
sha256 = "0qbqygj7ia494fbira9ajavvnxlpffx1jlzbb1vsf1wa8h3y4xn1";
sha256 = "1v2gzdd4k58f3yxmq4z97a7xh5vyd84flzzfr9k2cm29i93cwcam";
name = "bcc";
})

@@ -21,8 +21,8 @@ python.pkgs.buildPythonApplication rec {
(fetchFromGitHub {
owner = "libbpf";
repo = "libbpf";
rev = "0e37e0d03ac99987401e4496d3d76d44237b9963";
sha256 = "0wjf9dhvqkwiwnygzikamrgmpxgq77h2pxx6mi4pnbw0lxlppivr";
rev = "a30df5c09fb3941fc42c4570ed2545e7057bf82a";
sha256 = "088vb9sfs1zazlqi6abb3ia1xgpmwiz5pmz6y3a6gbh0zdrgh6px";
name = "libbpf";
})
];
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/bpftrace/default.nix
Original file line number Diff line number Diff line change
@@ -5,13 +5,13 @@

stdenv.mkDerivation rec {
pname = "bpftrace";
version = "0.9.1";
version = "0.9.2";

src = fetchFromGitHub {
owner = "iovisor";
repo = "bpftrace";
rev = "refs/tags/v${version}";
sha256 = "17qf1c3h99iyxkc0xzix4jnxwqvxbg9ki23zm7l04qw73lj01g1m";
sha256 = "19lblnhx3p0qk8s3qgxrx9wl0d6dgz5dfp4gw6a6cvhhyn78cldm";
};

enableParallelBuilding = true;