Unverified Commit a77c8a1f authored by JohnyLPM's avatar JohnyLPM Committed by GitHub
Browse files

supergfxctl-plasmoid: init at 2.0.0 (#315196)

parent e4bd985f
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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";
+38 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}