mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
qogir-kde: init at unstable-2022-07-08
This commit is contained in:
parent
d6256f19d1
commit
f0b82935f5
48
pkgs/data/themes/qogir-kde/default.nix
Normal file
48
pkgs/data/themes/qogir-kde/default.nix
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenvNoCC
|
||||||
|
, fetchFromGitHub
|
||||||
|
, gitUpdater
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation rec {
|
||||||
|
pname = "qogir-kde";
|
||||||
|
version = "unstable-2022-07-08";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "vinceliuice";
|
||||||
|
repo = pname;
|
||||||
|
rev = "f240eae10978c7fee518f7a8be1c41a21a9d5c2e";
|
||||||
|
hash = "sha256-AV60IQWwgvLwDO3ylILwx1DkKadwo4isn3JX3WpKoxQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
patchShebangs install.sh
|
||||||
|
|
||||||
|
substituteInPlace install.sh \
|
||||||
|
--replace '$HOME/.local' $out \
|
||||||
|
--replace '$HOME/.config' $out/share
|
||||||
|
'';
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/share/plasma/plasmoids
|
||||||
|
|
||||||
|
name= HOME="$TMPDIR" ./install.sh --dest $out/share/themes
|
||||||
|
|
||||||
|
mkdir -p $out/share/sddm/themes
|
||||||
|
cp -a sddm/Qogir $out/share/sddm/themes/
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = gitUpdater { inherit pname version; };
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A flat Design theme for KDE Plasma desktop";
|
||||||
|
homepage = "https://github.com/vinceliuice/Qogir-kde";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = [ maintainers.romildo ];
|
||||||
|
};
|
||||||
|
}
|
@ -25268,6 +25268,8 @@ with pkgs;
|
|||||||
|
|
||||||
qogir-icon-theme = callPackage ../data/icons/qogir-icon-theme { };
|
qogir-icon-theme = callPackage ../data/icons/qogir-icon-theme { };
|
||||||
|
|
||||||
|
qogir-kde = callPackage ../data/themes/qogir-kde { };
|
||||||
|
|
||||||
qogir-theme = callPackage ../data/themes/qogir { };
|
qogir-theme = callPackage ../data/themes/qogir { };
|
||||||
|
|
||||||
quintom-cursor-theme = callPackage ../data/icons/quintom-cursor-theme { };
|
quintom-cursor-theme = callPackage ../data/icons/quintom-cursor-theme { };
|
||||||
|
Loading…
Reference in New Issue
Block a user