lol

lttng-modules: update to 2.6.0-rc1

+5 -7
+5 -7
pkgs/os-specific/linux/lttng-modules/default.nix
··· 1 - { stdenv, fetchgit, kernel }: 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 - # Support for linux 3.16 and 3.17 was added just after the 2.5.0 release 9 - version = "2.5.0-58-gbf2ba31"; # "git describe bf2ba318fff" 8 + version = "2.6.0-rc1"; # "git describe bf2ba318fff" 10 9 11 - src = fetchgit { 12 - url = "https://github.com/lttng/lttng-modules.git"; 13 - sha256 = "0x70xp463g208rdz5b9b0wdwr2v8px1bwa589knvp4j7zi8d2gj9"; 14 - rev = "bf2ba318fff"; 10 + src = fetchurl { 11 + url = "https://github.com/lttng/lttng-modules/archive/v${version}.tar.gz"; 12 + sha256 = "01gha02ybbzr86v6s6bqn649jiw5k89kb363b9s1iv8igrdlzhl1"; 15 13 }; 16 14 17 15 preConfigure = ''