Merge pull request #323513 from romildo/upd.kvmarwaita

kvmarwaita: init at 0-unstable-2024-06-27
This commit is contained in:
José Romildo Malaquias 2024-07-03 22:36:54 -03:00 committed by GitHub
commit 7e4cda72fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,34 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
, unstableGitUpdater
}:
stdenvNoCC.mkDerivation {
pname = "kvmarwaita";
version = "0-unstable-2024-06-27";
src = fetchFromGitHub {
owner = "darkomarko42";
repo = "KvMarwaita";
rev = "3e5f62b8e23bde87f04aae157a453e380d6c5460";
hash = "sha256-5hRqWQR1OZK7I5T8NV2D1i5yrifvWhHakgwGtdtQQPQ=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/Kvantum/KvMarwaita
cp -a Kv* $out/share/Kvantum/KvMarwaita/
runHook postInstall
'';
passthru.updateScript = unstableGitUpdater { };
meta = {
description = "Marwaita theme for Kvantum";
homepage = "https://github.com/darkomarko42/KvMarwaita";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ romildo ];
};
}