mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-16 22:29:51 +00:00
Merge pull request #263788 from romildo/upd.utterly-round-plasma-style
utterly-round-plasma-style: init at 2.1
This commit is contained in:
commit
c16a6fe286
40
pkgs/data/themes/utterly-round-plasma-style/default.nix
Normal file
40
pkgs/data/themes/utterly-round-plasma-style/default.nix
Normal file
@ -0,0 +1,40 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "utterly-round-plasma-style";
|
||||
version = "2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "HimDek";
|
||||
repo = pname;
|
||||
rev = "c3677d5223286f69871f6745cdb3b71367229d40";
|
||||
hash = "sha256-mlqRMz0cAZnnM4xE6p7fMzhGlqCQcM4FxmDlVnbGUgQ=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/share/{aurorae/themes,plasma/desktoptheme}
|
||||
|
||||
cp -a aurorae/dark/translucent $out/share/aurorae/themes/Utterly-Round-Dark
|
||||
cp -a aurorae/dark/solid $out/share/aurorae/themes/Utterly-Round-Dark-Solid
|
||||
cp -a aurorae/light/translucent $out/share/aurorae/themes/Utterly-Round-Light
|
||||
cp -a aurorae/light/solid $out/share/aurorae/themes/Utterly-Round-Light-Solid
|
||||
|
||||
cp -a desktoptheme/translucent $out/share/plasma/desktoptheme/Utterly-Round
|
||||
cp -a desktoptheme/solid $out/share/plasma/desktoptheme/Utterly-Round-Solid
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A rounded desktop theme and window borders for Plasma 5 that follows any color scheme";
|
||||
homepage = "https://himdek.com/Utterly-Round-Plasma-Style/";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.romildo ];
|
||||
};
|
||||
}
|
@ -30143,6 +30143,8 @@ with pkgs;
|
||||
inherit (libsForQt5) breeze-icons kdeclarative kirigami2 plasma-framework plasma-workspace;
|
||||
};
|
||||
|
||||
utterly-round-plasma-style = callPackage ../data/themes/utterly-round-plasma-style { };
|
||||
|
||||
uw-ttyp0 = callPackage ../data/fonts/uw-ttyp0 { };
|
||||
|
||||
u001-font = callPackage ../data/fonts/u001 { };
|
||||
|
Loading…
Reference in New Issue
Block a user