lttng-modules: 2.6.0-5 -> 2.6.2-1, fixes build on kernel 3.18

authored by Luca Bruno and committed by Bjørn Forsman ffb8143c 37979018

+7 -6
+7 -6
pkgs/os-specific/linux/lttng-modules/default.nix
··· 1 - { stdenv, fetchgit, kernel }: 1 + { stdenv, fetchFromGitHub, 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 - version = "2.6.0-5-g1b2a542"; 8 + version = "2.6.2-1-g7a88f8b"; 9 9 10 - src = fetchgit { 11 - url = "https://github.com/lttng/lttng-modules.git"; 12 - rev = "1b2a5429de815c95643df2eadf91253909708728"; 13 - sha256 = "0zccaiadnk0xl6xrqaqlg9rpkwjgbq2fiyc3psylzqimnx0ydxc2"; 10 + src = fetchFromGitHub { 11 + owner = "lttng"; 12 + repo = "lttng-modules"; 13 + rev = "7a88f8b50696dd71e80c08661159caf8e119bf51"; 14 + sha256 = "1i185dvk4wn7fmmx1zfv6g15x8wi38jmav2dmq0mmy8cvriajq8h"; 14 15 }; 15 16 16 17 preConfigure = ''