home-assistant-custom-lovelace-modules.light-entity-card: fix meta.changelog, intel-graphics-compiler: fix meta.changelog, python314Packages.protobuf: remove myself from maintainers (#514439)

This commit is contained in:
Yohann Boniface
2026-04-28 20:52:23 +00:00
committed by GitHub
3 changed files with 6 additions and 6 deletions
@@ -148,7 +148,7 @@ stdenv.mkDerivation rec {
meta = {
description = "LLVM-based compiler for OpenCL targeting Intel Gen graphics hardware";
homepage = "https://github.com/intel/intel-graphics-compiler";
changelog = "https://github.com/intel/intel-graphics-compiler/releases/tag/${version}";
changelog = "https://github.com/intel/intel-graphics-compiler/releases/tag/v${version}";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
@@ -41,6 +41,6 @@ buildPythonPackage rec {
homepage = "https://developers.google.com/protocol-buffers/";
changelog = "https://github.com/protocolbuffers/protobuf/releases/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ SuperSandro2000 ];
maintainers = [ ];
};
}
@@ -4,14 +4,14 @@
fetchFromGitHub,
}:
buildNpmPackage rec {
buildNpmPackage (finalAttrs: {
pname = "light-entity-card";
version = "6.3.1";
src = fetchFromGitHub {
owner = "ljmerza";
repo = "light-entity-card";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-Y25jtbKJNTVi6XUHntm2AtIzuht96/o5l+uScwEE9So=";
};
@@ -31,8 +31,8 @@ buildNpmPackage rec {
meta = {
description = "Control any light or switch entity";
homepage = "https://github.com/ljmerza/light-entity-card";
changelog = "https://github.com/ljmerza/light-entity-card/releases/tag/${version}";
changelog = "https://github.com/ljmerza/light-entity-card/releases/tag/${finalAttrs.src.tag}";
maintainers = with lib.maintainers; [ SuperSandro2000 ];
license = lib.licenses.mit;
};
}
})