From 8c6ecc5ce78d9f3ab2db07bae6463fb212984afe Mon Sep 17 00:00:00 2001 From: Olli Helenius Date: Fri, 1 Nov 2024 10:40:05 +0200 Subject: [PATCH 1/2] ncspot: fix desktop file Fix the typo in the name the desktop file and icon. --- pkgs/by-name/nc/ncspot/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/nc/ncspot/package.nix b/pkgs/by-name/nc/ncspot/package.nix index 08bc03048e54..64547d827a21 100644 --- a/pkgs/by-name/nc/ncspot/package.nix +++ b/pkgs/by-name/nc/ncspot/package.nix @@ -80,8 +80,8 @@ rustPlatform.buildRustPackage rec { ++ lib.optional withTermion "termion_backend"; postInstall = '' - install -D --mode=444 $src/misc/ncspot.desktop $out/share/applications/nscpot.desktop - install -D --mode=444 $src/images/logo.svg $out/share/icons/hicolor/scalable/apps/nscpot.png + install -D --mode=444 $src/misc/ncspot.desktop $out/share/applications/ncspot.desktop + install -D --mode=444 $src/images/logo.svg $out/share/icons/hicolor/scalable/apps/ncspot.svg ''; passthru = { From d86732dc63a4d84f5a558b46612936e8cda3525b Mon Sep 17 00:00:00 2001 From: Olli Helenius Date: Fri, 1 Nov 2024 10:42:27 +0200 Subject: [PATCH 2/2] ncspot: 1.2.0 -> 1.2.1 --- pkgs/by-name/nc/ncspot/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/nc/ncspot/package.nix b/pkgs/by-name/nc/ncspot/package.nix index 64547d827a21..85ababb6044b 100644 --- a/pkgs/by-name/nc/ncspot/package.nix +++ b/pkgs/by-name/nc/ncspot/package.nix @@ -35,16 +35,16 @@ rustPlatform.buildRustPackage rec { pname = "ncspot"; - version = "1.2.0"; + version = "1.2.1"; src = fetchFromGitHub { owner = "hrkfdn"; repo = "ncspot"; rev = "refs/tags/v${version}"; - hash = "sha256-FI/MZRxTyYWh+CWq3roO6d48xlPsyL58+euGmCZ8p4Y="; + hash = "sha256-h3Mp67AKuzzeO6l7jN6yrQAHpYSsaOp1Y+qJoamK82U="; }; - cargoHash = "sha256-Jg/P6aaMlgpunYd30eoBt1leL0vgEBn2wNRGZsP4abc="; + cargoHash = "sha256-uWnW4Ov5MoDh3xkmTsNSin9WI0SJAoDGa+n8IMNvo4Y="; nativeBuildInputs = [ pkg-config ] ++ lib.optional withClipboard python3;