16 lines
504 B
Nix
16 lines
504 B
Nix
{pkgs, ...}: let
|
|
getFrom = url: hash: name: {
|
|
gtk.enable = true;
|
|
x11.enable = true;
|
|
name = name;
|
|
size = 24;
|
|
package = pkgs.runCommand "moveUp" {} ''
|
|
mkdir -p $out/share/icons
|
|
ln -s ${pkgs.fetchzip {
|
|
url = url;
|
|
hash = hash;
|
|
}} $out/share/icons/${name}
|
|
'';
|
|
};
|
|
in
|
|
getFrom "https://github.com/rose-pine/cursor/releases/download/v1.1.0/BreezeX-RosePine-Linux.tar.xz" "sha256-t5xwAPGhuQUfGThedLsmtZEEp1Ljjo3Udhd5Ql3O67c=" "BreezX-RosePine-Linux"
|