tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
lttng-modules: update to 2.6.0-rc1
Domen Kožar
11 years ago
f86ef026
20260547
+5
-7
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
lttng-modules
default.nix
+5
-7
pkgs/os-specific/linux/lttng-modules/default.nix
reviewed
···
1
1
-
{ stdenv, fetchgit, kernel }:
1
1
+
{ stdenv, fetchurl, kernel }:
2
2
3
3
assert stdenv.lib.versionAtLeast kernel.version "3.4"; # fails on 3.2
4
4
5
5
stdenv.mkDerivation rec {
6
6
pname = "lttng-modules-${version}";
7
7
name = "${pname}-${kernel.version}";
8
8
-
# Support for linux 3.16 and 3.17 was added just after the 2.5.0 release
9
9
-
version = "2.5.0-58-gbf2ba31"; # "git describe bf2ba318fff"
8
8
+
version = "2.6.0-rc1"; # "git describe bf2ba318fff"
10
9
11
11
-
src = fetchgit {
12
12
-
url = "https://github.com/lttng/lttng-modules.git";
13
13
-
sha256 = "0x70xp463g208rdz5b9b0wdwr2v8px1bwa589knvp4j7zi8d2gj9";
14
14
-
rev = "bf2ba318fff";
10
10
+
src = fetchurl {
11
11
+
url = "https://github.com/lttng/lttng-modules/archive/v${version}.tar.gz";
12
12
+
sha256 = "01gha02ybbzr86v6s6bqn649jiw5k89kb363b9s1iv8igrdlzhl1";
15
13
};
16
14
17
15
preConfigure = ''