From 2a197c435059218bd08180d29a2a0b097b664916 Mon Sep 17 00:00:00 2001 From: Amadej Kastelic Date: Thu, 15 May 2025 21:10:14 +0200 Subject: [PATCH 1/2] simp1e-cursors: 20221103.2 -> 20250223 --- pkgs/by-name/si/simp1e-cursors/package.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/si/simp1e-cursors/package.nix b/pkgs/by-name/si/simp1e-cursors/package.nix index 394f362cd562..8de23ffe963a 100644 --- a/pkgs/by-name/si/simp1e-cursors/package.nix +++ b/pkgs/by-name/si/simp1e-cursors/package.nix @@ -9,13 +9,13 @@ stdenvNoCC.mkDerivation rec { pname = "simp1e-cursors"; - version = "20221103.2"; + version = "20250223"; src = fetchFromGitLab { owner = "cursors"; repo = "simp1e"; - rev = version; - hash = "sha256-3DCF6TwxWwYK5pF2Ykr3OwF76H7J03vLNZch/XoZZZk="; + tag = version; + hash = "sha256-mNuGjpNZCaOlGLkHez4pFMPdCCbSoYQx1HTs7BI0DJA="; fetchSubmodules = true; }; @@ -42,6 +42,7 @@ stdenvNoCC.mkDerivation rec { meta = with lib; { description = "Aesthetic cursor theme for Linux desktops"; homepage = "https://gitlab.com/cursors/simp1e"; + changelog = "https://gitlab.com/cursors/simp1e/-/tags/${version}"; license = licenses.gpl3; platforms = platforms.linux; maintainers = with maintainers; [ natto1784 ]; From 160f3def04a6452b930a34a03fa6279927f84691 Mon Sep 17 00:00:00 2001 From: Amadej Kastelic Date: Thu, 15 May 2025 21:11:25 +0200 Subject: [PATCH 2/2] simp1e-cursors: remove usages of with --- pkgs/by-name/si/simp1e-cursors/package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/si/simp1e-cursors/package.nix b/pkgs/by-name/si/simp1e-cursors/package.nix index 8de23ffe963a..48edf52cb875 100644 --- a/pkgs/by-name/si/simp1e-cursors/package.nix +++ b/pkgs/by-name/si/simp1e-cursors/package.nix @@ -20,7 +20,7 @@ stdenvNoCC.mkDerivation rec { }; nativeBuildInputs = [ - (python3.withPackages (ps: with ps; [ pillow ])) + (python3.withPackages (ps: [ ps.pillow ])) librsvg xcursorgen ]; @@ -39,12 +39,12 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Aesthetic cursor theme for Linux desktops"; homepage = "https://gitlab.com/cursors/simp1e"; changelog = "https://gitlab.com/cursors/simp1e/-/tags/${version}"; - license = licenses.gpl3; - platforms = platforms.linux; - maintainers = with maintainers; [ natto1784 ]; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; + maintainers = [ lib.maintainers.natto1784 ]; }; }