Merge pull request #283228 from GetPsyched/pokemon-cursor

pokemon-cursor: init at 2.0.0
This commit is contained in:
Peder Bergebakken Sundt 2024-04-22 00:12:41 +02:00 committed by GitHub
commit a77f1016f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{ fetchFromGitHub
, lib
, stdenvNoCC
, # build deps
clickgen
, python3Packages
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "pokemon-cursor";
version = "2.0.0";
src = fetchFromGitHub {
owner = "ful1e5";
repo = "pokemon-cursor";
rev = "v${finalAttrs.version}";
sha256 = "sha256-EL6Ztbzjm1YuQP+8ZbrhbuBXn+GFiJGG0iGNWzU/rBY=";
};
nativeBuildInputs = [
clickgen
python3Packages.attrs
];
buildPhase = ''
runHook preBuild
ctgen build.toml -p x11 -o $out
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
mv $out/Pokemon $out/share/icons
runHook postInstall
'';
meta = with lib; {
description = "An unofficial open-source Pokemon cursor theme";
homepage = "https://github.com/ful1e5/pokemon-cursor";
license = licenses.gpl3Plus;
maintainers = [ maintainers.getpsyched ];
platforms = platforms.linux;
};
})