breezex folder now matches the pkg name

This commit is contained in:
2024-11-11 18:26:32 -05:00
parent 0d2d48af5c
commit 325e83fed9
3 changed files with 30 additions and 8 deletions

View File

@@ -25,8 +25,8 @@ in {
}; };
}; };
cursor = { cursor = {
package = pkgs.myPkgs.breezex-cursor; package = pkgs.bibata-cursors;
name = "BreezeX-Dark"; name = "Bibata-Modern-Ice";
}; };
fonts = { fonts = {
monospace = { monospace = {

View File

@@ -1,10 +1,25 @@
{ pkgs ? import <nixpkgs> { } }: {
stdenvNoCC,
fetchFromGitHub,
fetchzip,
clickgen,
lib
}:
pkgs.stdenvNoCC.mkDerivation rec { let
pagedMov = {
email = "kylerclay@proton.me";
github = "pagedMov";
githubId = 19557376;
name = "Kyler Clay";
keys = [ { fingerprint = "784B 3623 94E7 8F11 0B9D AE0F 56FD CFA6 2A93 B51E"; } ];
};
in
stdenvNoCC.mkDerivation rec {
pname = "breezex-cursor"; pname = "breezex-cursor";
version = "2.0.1"; version = "2.0.1";
src = pkgs.fetchFromGitHub { src = fetchFromGitHub {
owner = "ful1e5"; owner = "ful1e5";
repo = "BreezeX_Cursor"; repo = "BreezeX_Cursor";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
@@ -12,10 +27,10 @@ pkgs.stdenvNoCC.mkDerivation rec {
}; };
nativeBuildInputs = [ nativeBuildInputs = [
pkgs.clickgen clickgen
]; ];
bitmaps = pkgs.fetchzip { bitmaps = fetchzip {
url = "https://github.com/ful1e5/BreezeX_Cursor/releases/download/v2.0.1/bitmaps.zip"; url = "https://github.com/ful1e5/BreezeX_Cursor/releases/download/v2.0.1/bitmaps.zip";
hash = "sha256-JncEE+G4tPgcLgabe/dD7DOVMLOWCI7e+3VdmXuZSo8="; hash = "sha256-JncEE+G4tPgcLgabe/dD7DOVMLOWCI7e+3VdmXuZSo8=";
}; };
@@ -34,4 +49,11 @@ pkgs.stdenvNoCC.mkDerivation rec {
cp -rf themes/* $out/share/icons/ cp -rf themes/* $out/share/icons/
runHook postInstall runHook postInstall
''; '';
meta = {
description = "Extended KDE cursor, inspired by KDE Breeze";
homepage = "https://github.com/ful1e5/BreezeX_Cursor";
license = lib.licenses.gpl3;
maintainers = [ pagedMov ];
};
} }

View File

@@ -2,7 +2,7 @@ self: super: {
myPkgs = { myPkgs = {
# Packages that I've made # Packages that I've made
tinyfetch = super.callPackage ./tinyfetch/package.nix {}; tinyfetch = super.callPackage ./tinyfetch/package.nix {};
breezex-cursor = super.callPackage ./BreezeX_Cursor/package.nix {}; breezex-cursor = super.callPackage ./breezex-cursor/package.nix {};
check_updates = super.callPackage ./check_updates/package.nix {}; check_updates = super.callPackage ./check_updates/package.nix {};
}; };
} }