From 6182001e755723a0c491f45c28f003b9853eb5b2 Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 24 Dec 2024 05:55:17 +0000 Subject: [PATCH] keypunch: 4.0 -> 5.0 Changelog: https://github.com/bragefuglseth/keypunch/releases/tag/v5.0 Diff: https://github.com/bragefuglseth/keypunch/compare/v4.0...v5.0 --- pkgs/by-name/ke/keypunch/package.nix | 41 +++++++++++++--------------- 1 file changed, 19 insertions(+), 22 deletions(-) diff --git a/pkgs/by-name/ke/keypunch/package.nix b/pkgs/by-name/ke/keypunch/package.nix index 2efc9afb44ced..c7b5f4e6d9e85 100644 --- a/pkgs/by-name/ke/keypunch/package.nix +++ b/pkgs/by-name/ke/keypunch/package.nix @@ -1,54 +1,51 @@ { lib, stdenv, - fetchFromGitHub, - rustPlatform, - nix-update-script, - cargo, - rustc, - meson, - ninja, - pkg-config, appstream, blueprint-compiler, + cargo, desktop-file-utils, + fetchFromGitHub, gettext, - wrapGAppsHook4, libadwaita, + meson, + ninja, + nix-update-script, + pkg-config, + rustPlatform, + rustc, + wrapGAppsHook4, }: stdenv.mkDerivation (finalAttrs: { pname = "keypunch"; - version = "4.0"; + version = "5.0"; src = fetchFromGitHub { owner = "bragefuglseth"; repo = "keypunch"; - rev = "refs/tags/v${finalAttrs.version}"; - hash = "sha256-Xd4fzreComOUnoJ6l2ncMWn6DlUeRCM+YwApilhFd/8="; + tag = "v${finalAttrs.version}"; + hash = "sha256-oP/rbtX72Ng4GVsXl5s8eESrUlJiJ/n05KArZHVo00c="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit (finalAttrs) pname version src; - hash = "sha256-agFOxSZBi8f0zEPd+ha5c3IAbSH2jHfUx2iNeHFs9jI="; + hash = "sha256-Uz9YbD4k3o3WOXCoIW41eUdi+HIfZLZJNszr9y3qezI="; }; strictDeps = true; nativeBuildInputs = [ - rustPlatform.cargoSetupHook - cargo - rustc - - meson - ninja - - pkg-config appstream blueprint-compiler + cargo desktop-file-utils gettext - + meson + ninja + pkg-config + rustPlatform.cargoSetupHook + rustc wrapGAppsHook4 ];