linuxPackages.lttng-modules: reformat with RFC style
This commit is contained in:
committed by
Bjørn Forsman
parent
c2c2698877
commit
9f9ef912d6
@@ -1,4 +1,9 @@
|
||||
{ lib, stdenv, fetchFromGitHub, kernel }:
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
kernel,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lttng-modules-${kernel.version}";
|
||||
@@ -29,9 +34,15 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Linux kernel modules for LTTng tracing";
|
||||
homepage = "https://lttng.org/";
|
||||
license = with licenses; [ lgpl21Only gpl2Only mit ];
|
||||
license = with licenses; [
|
||||
lgpl21Only
|
||||
gpl2Only
|
||||
mit
|
||||
];
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
broken = (lib.versions.majorMinor kernel.modDirVersion) == "5.10" || (lib.versions.majorMinor kernel.modDirVersion) == "5.4";
|
||||
broken =
|
||||
(lib.versions.majorMinor kernel.modDirVersion) == "5.10"
|
||||
|| (lib.versions.majorMinor kernel.modDirVersion) == "5.4";
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user