Merge pull request #253172 from mk3z/submit/posy-cursors
posy-cursors: init at 1.6
This commit is contained in:
commit
bfb47099ab
@ -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";
|
||||
|
28
pkgs/by-name/po/posy-cursors/package.nix
Normal file
28
pkgs/by-name/po/posy-cursors/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user