mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 12:22:37 +03:00
lttng-modules: update to 2.6.0-rc1
This commit is contained in:
parent
2026054746
commit
f86ef02678
@ -1,17 +1,15 @@
|
||||
{ stdenv, fetchgit, kernel }:
|
||||
{ stdenv, fetchurl, kernel }:
|
||||
|
||||
assert stdenv.lib.versionAtLeast kernel.version "3.4"; # fails on 3.2
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lttng-modules-${version}";
|
||||
name = "${pname}-${kernel.version}";
|
||||
# Support for linux 3.16 and 3.17 was added just after the 2.5.0 release
|
||||
version = "2.5.0-58-gbf2ba31"; # "git describe bf2ba318fff"
|
||||
version = "2.6.0-rc1"; # "git describe bf2ba318fff"
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/lttng/lttng-modules.git";
|
||||
sha256 = "0x70xp463g208rdz5b9b0wdwr2v8px1bwa589knvp4j7zi8d2gj9";
|
||||
rev = "bf2ba318fff";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/lttng/lttng-modules/archive/v${version}.tar.gz";
|
||||
sha256 = "01gha02ybbzr86v6s6bqn649jiw5k89kb363b9s1iv8igrdlzhl1";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
|
Loading…
Reference in New Issue
Block a user