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

Commits on Jun 24, 2017

  1. lttng-modules: 2.9.1 -> 2.9.3

    Mic92 committed Jun 24, 2017
    Copy the full SHA
    a087e5a View commit details
  2. lttng-ust: 2.9.0 -> 2.9.1

    Mic92 committed Jun 24, 2017
    Copy the full SHA
    088ab90 View commit details
  3. lttng-tools: 2.9.3 -> 2.9.5

    Mic92 committed Jun 24, 2017
    Copy the full SHA
    dc6e5dc View commit details
4 changes: 2 additions & 2 deletions pkgs/development/tools/misc/lttng-tools/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
name = "lttng-tools-${version}";
version = "2.9.3";
version = "2.9.5";

src = fetchurl {
url = "https://lttng.org/files/lttng-tools/${name}.tar.bz2";
sha256 = "0kmj0ya5625mn2khbnghhsdmjr66xs0mhrvbrsdvrp3pm6mbmrm6";
sha256 = "073kzfiwgvz7c10hihjwn1p53hh1jwvdkkway0jj2rbczjv9x0vp";
};

nativeBuildInputs = [ pkgconfig ];
6 changes: 3 additions & 3 deletions pkgs/development/tools/misc/lttng-ust/default.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
# ./configure ...
# [...]
# LTTng-UST will be built with the following options:
#
#
# Java support (JNI): Disabled
# sdt.h integration: Disabled
# [...]
@@ -13,11 +13,11 @@

stdenv.mkDerivation rec {
name = "lttng-ust-${version}";
version = "2.9.0";
version = "2.9.1";

src = fetchurl {
url = "https://lttng.org/files/lttng-ust/${name}.tar.bz2";
sha256 = "1bsxxaqhkh9bwr1ll5acb41hvis2lhkl00h5ra2wdps27y31lm2d";
sha256 = "196snxrs1p205jz566rwxh7dqzsa3k16c7vm6k7i3gdvrmkx54dq";
};

buildInputs = [ liburcu ];
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/lttng-modules/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
pname = "lttng-modules-${version}";
name = "${pname}-${kernel.version}";
version = "2.9.1";
version = "2.9.3";

src = fetchurl {
url = "http://lttng.org/files/lttng-modules/lttng-modules-${version}.tar.bz2";
sha256 = "0m0d8sp7fj1qha7qz1204yzpsyfd8a8fawjbvdlmk9jc4piqy1v2";
sha256 = "1zms8q199489ym0x1ri54napyi6pva80641x9x3qg9q23flbq4gr";
};

hardeningDisable = [ "pic" ];