mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
kvmarwaita: init at 0-unstable-2024-06-27
This commit is contained in:
parent
f4ebfc297c
commit
86b7511aa4
34
pkgs/by-name/kv/kvmarwaita/package.nix
Normal file
34
pkgs/by-name/kv/kvmarwaita/package.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user