supergfxctl-plasmoid: init at 2.0.0 (#315196)

This commit is contained in:
JohnyLPM 2024-06-02 18:01:35 +01:00 committed by GitHub
parent e4bd985fab
commit a77c8a1f04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 44 additions and 0 deletions

View File

@ -9990,6 +9990,12 @@
githubId = 25030997;
name = "Yuki Okushi";
};
johnylpm = {
email = "joaoluisparreira@gmail.com";
github = "Johny-LPM";
githubId = 168684553;
name = "João Marques";
};
jojosch = {
name = "Johannes Schleifenbaum";
email = "johannes@js-webcoding.de";

View File

@ -0,0 +1,38 @@
{ lib
, stdenv
, fetchFromGitLab
, cmake
, kdePackages
}:
stdenv.mkDerivation rec {
pname = "supergfxctl-plasmoid";
version = "2.0.0";
src = fetchFromGitLab {
owner = "jhyub";
repo = "supergfxctl-plasmoid";
rev = "refs/tags/v${version}";
hash = "sha256-m3NmbFD9tqqCyiQgMVRNtlCZy7q+rMCsWgtds1QdOrE=";
};
nativeBuildInputs = [
cmake
kdePackages.wrapQtAppsHook
];
buildInputs = [
kdePackages.libplasma
];
meta = {
description = "KDE Plasma plasmoid for supergfxctl";
longDescription = ''
KDE Plasma plasmoid for supergfxctl
Built as a C++/QML Plasmoid
'';
license = lib.licenses.mpl20;
homepage = "https://gitlab.com/Jhyub/supergfxctl-plasmoid";
maintainers = with lib.maintainers; [ johnylpm ];
};
}