From c373fc96267c1a09e84fbc0c3b1bfbf4f798ac7a Mon Sep 17 00:00:00 2001 From: Philipp Schuster Date: Tue, 14 Mar 2023 01:38:09 +0100 Subject: [PATCH] paging-calculator: 0.1.2 -> 0.2.0 (#219752) --- .../tools/paging-calculator/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/paging-calculator/default.nix b/pkgs/development/tools/paging-calculator/default.nix index f57d7b137b1..eeb45802e38 100644 --- a/pkgs/development/tools/paging-calculator/default.nix +++ b/pkgs/development/tools/paging-calculator/default.nix @@ -5,23 +5,23 @@ rustPlatform.buildRustPackage rec { pname = "paging-calculator"; - version = "0.1.2"; + version = "0.2.0"; src = fetchCrate { inherit pname version; - hash = "sha256-9DbpfJbarWXYGNzTqfHHSaKFqSJ59E/VhOhuMUWk8ho="; + hash = "sha256-GxugaNLkLy71X/E9EAn/2p2ReSHvs5TvXAxg8csu9uc="; }; - cargoHash = "sha256-IfOhJwR5eRHeeAbEZ8zeUVojQXtrYHdzAeht/lvdlUQ="; + cargoHash = "sha256-a1yryyKCcNQVurqnb+AZiBQ0rilNsuXmSsFoaaBe+r8="; meta = { description = "CLI utility that helps calculating page table indices from a virtual address"; longDescription = '' - paging-calculator is a CLI utility written in Rust that helps you find the indices that a virtual - address will have on different architectures or paging implementations. + paging-calculator is a CLI utility written in Rust that helps you finding the indices that a + virtual address will have into the page tables on different architectures. - It takes a (virtual) address in hexadecimal format and shows you which index will be used for - what page-table level. It can be installed with $ cargo install paging-calculator. + It takes a (virtual) address in hexadecimal format and shows you which index is used for + which level of the page table. ''; homepage = "https://github.com/phip1611/paging-calculator"; changelog = "https://github.com/phip1611/paging-calculator/blob/v${version}/CHANGELOG.md";