Commit 80b37887 authored by Guy Chronister's avatar Guy Chronister
Browse files

utterly-nord-plasma: migrate to by-name

utterly-nord-plasma: refactor package definitions and meta

utterly-nord-plasma: remove rec
parent be47e535
Loading
Loading
Loading
Loading
+9 −13
Original line number Diff line number Diff line
@@ -2,29 +2,25 @@
  lib,
  stdenv,
  fetchFromGitHub,
  breeze-icons,
  kdeclarative,
  kirigami,
  plasma-framework,
  plasma-workspace,
  kdePackages,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation {
  pname = "utterly-nord-plasma";
  version = "3.2";

  src = fetchFromGitHub {
    owner = "HimDek";
    repo = pname;
    repo = "utterly-nord-plasma";
    rev = "e513b4dfeddd587a34bfdd9ba6b1d1eac8ecadf5";
    hash = "sha256-moLgBFR+BgoiEBzV3y/LA6JZfLHrG1weL1+h8LN9ztA=";
  };

  propagatedUserEnvPkgs = [
  propagatedUserEnvPkgs = with kdePackages; [
    breeze-icons
    kdeclarative
    kirigami
    plasma-framework
    libplasma
    plasma-workspace
  ];

@@ -54,11 +50,11 @@ stdenv.mkDerivation rec {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Plasma theme with Nordic Colors, transparency, blur and round edges for UI elements";
    homepage = "https://himdek.com/Utterly-Nord-Plasma/";
    license = licenses.gpl2Plus;
    platforms = platforms.all;
    maintainers = [ maintainers.romildo ];
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.all;
    maintainers = with lib.maintainers; [ romildo ];
  };
}
+0 −5
Original line number Diff line number Diff line
@@ -11579,11 +11579,6 @@ with pkgs;

  tex-gyre-math = callPackages ../data/fonts/tex-gyre-math { };

  utterly-nord-plasma = kdePackages.callPackage ../data/themes/utterly-nord-plasma {
    # renamed in KF6
    plasma-framework = kdePackages.libplasma;
  };

  whitesur-kde = kdePackages.callPackage ../data/themes/whitesur-kde { };

  xkeyboard_config = xkeyboard-config;