Merge pull request #256799 from argrat/borealis-cursors
borealis-cursors: init at 2.0
This commit is contained in:
commit
77ab23be35
2 changed files with 39 additions and 0 deletions
|
@ -1411,6 +1411,12 @@
|
||||||
githubId = 58516559;
|
githubId = 58516559;
|
||||||
name = "Alexander Rezvov";
|
name = "Alexander Rezvov";
|
||||||
};
|
};
|
||||||
|
argrat = {
|
||||||
|
email = "n.bertazzo@protonmail.com";
|
||||||
|
github = "argrat";
|
||||||
|
githubId = 98821629;
|
||||||
|
name = "Nicolò Bertazzo";
|
||||||
|
};
|
||||||
arian-d = {
|
arian-d = {
|
||||||
email = "arianxdehghani@gmail.com";
|
email = "arianxdehghani@gmail.com";
|
||||||
github = "arian-d";
|
github = "arian-d";
|
||||||
|
|
33
pkgs/by-name/bo/borealis-cursors/package.nix
Normal file
33
pkgs/by-name/bo/borealis-cursors/package.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{ lib
|
||||||
|
, stdenvNoCC
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||||
|
pname = "borealis-cursors";
|
||||||
|
version = "2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "alvatip";
|
||||||
|
repo = "Borealis-cursors";
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
hash = "sha256-1qgyU0Npbx/AgqGbmF/BWtlVC0KsKtgC48SL/HtkDrk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/share/icons
|
||||||
|
cp -a Borealis-cursors $out/share/icons
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Cursor theme using a custom color palette inspired by boreal colors";
|
||||||
|
homepage = "https://www.gnome-look.org/s/Gnome/p/1717914";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with lib.maintainers; [ argrat ];
|
||||||
|
};
|
||||||
|
})
|
Loading…
Reference in a new issue