summary refs log tree commit diff
path: root/pkgs/os-specific/linux/lttng-modules
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-04-13 10:46:10 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-04-13 10:47:16 +0200
commitd1f875c6af7240e63a6ad765b323e8a1c92d31af (patch)
tree95dfcc0bc437d9617ba5596698730cb0f8bdf1be /pkgs/os-specific/linux/lttng-modules
parent2661400d2a404581556d09f06e988fcfe5e0805d (diff)
downloadnixpkgs-d1f875c6af7240e63a6ad765b323e8a1c92d31af.tar
nixpkgs-d1f875c6af7240e63a6ad765b323e8a1c92d31af.tar.gz
nixpkgs-d1f875c6af7240e63a6ad765b323e8a1c92d31af.tar.bz2
nixpkgs-d1f875c6af7240e63a6ad765b323e8a1c92d31af.tar.lz
nixpkgs-d1f875c6af7240e63a6ad765b323e8a1c92d31af.tar.xz
nixpkgs-d1f875c6af7240e63a6ad765b323e8a1c92d31af.tar.zst
nixpkgs-d1f875c6af7240e63a6ad765b323e8a1c92d31af.zip
lttng project: update from 2.3.0 to 2.4.1
(And update liburcu to 0.8.4 according to release notes for lttng 2.4.x.)

In addition to new features and bug fixes, version 2.4.x is needed to build
against Linux 3.12 (our new stable kernel).
Diffstat (limited to 'pkgs/os-specific/linux/lttng-modules')
-rw-r--r--pkgs/os-specific/linux/lttng-modules/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/lttng-modules/default.nix b/pkgs/os-specific/linux/lttng-modules/default.nix
index 1673472036f..8e20bf1e3d3 100644
--- a/pkgs/os-specific/linux/lttng-modules/default.nix
+++ b/pkgs/os-specific/linux/lttng-modules/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, kernel }:
 
 stdenv.mkDerivation rec {
-  pname = "lttng-modules-2.3.0";
+  pname = "lttng-modules-2.4.1";
   name = "${pname}-${kernel.version}";
 
   src = fetchurl {
     url = "https://lttng.org/files/lttng-modules/${pname}.tar.bz2";
-    sha256 = "0l9fbmpsjvm5pbrc6axy8chdp21j4b8fm0hmjhpk658ll0iixmpb";
+    sha256 = "1qn1qm8lwqw9ri9wfkf6k3d58gl9rwffmpbpkwx21v1fw95zi92k";
   };
 
   patches = [ ./lttng-fix-build-error-on-linux-3.2.patch ];