Merge pull request #253172 from mk3z/submit/posy-cursors

posy-cursors: init at 1.6
This commit is contained in:
Peder Bergebakken Sundt 2024-06-28 14:28:27 +02:00 committed by GitHub
commit bfb47099ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 34 additions and 0 deletions

View File

@ -13343,6 +13343,12 @@
githubId = 5698461;
name = "Maciej Kazulak";
};
mkez = {
email = "matias.zwinger+nix@protonmail.com";
github = "mk3z";
githubId = 52108954;
name = "Matias Zwinger";
};
mkf = {
email = "m@mikf.pl";
github = "mkf";

View File

@ -0,0 +1,28 @@
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation rec {
pname = "posy-cursors";
version = "1.6";
src = fetchFromGitHub {
owner = "simtrami";
repo = "posy-improved-cursor-linux";
rev = "refs/tags/${version}";
hash = "sha256-i0N/QB5uzqHapMCDl6h6PWPJ4GOAyB1ds9qlqmZacLY=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/icons
cp -r Posy_Cursor* $out/share/icons
runHook postInstall
'';
meta = with lib; {
description = "Posy's Improved Cursors for Linux";
homepage = "https://github.com/simtrami/posy-improved-cursor-linux";
platforms = platforms.unix;
license = licenses.unfree;
maintainers = with maintainers; [ mkez ];
};
}