nix-rice, slightly scuffed

This commit is contained in:
atagen 2023-05-21 01:34:21 +10:00
parent aae14e214e
commit 60a15031a9
9 changed files with 275 additions and 116 deletions

22
pkgs/gruvbox-kvantum.nix Normal file
View file

@ -0,0 +1,22 @@
{
stdenv,
fetchFromGitHub,
lib,
}:
stdenv.mkDerivation rec {
pname = "gruvbox-kvantum";
version = "unstable-2023-02-06";
src = fetchFromGitHub {
owner = "thefallnn";
repo = "Gruvbox-Kvantum";
rev = "b04c6b67a4228c2b980821a0f0531bfe122c4aac";
sha256 = lib.fakeSha256;
};
installPhase = ''
runHook preInstall
cp -a gruvbox-kvantum/ $out/
runHook postInstall
'';
}