6 rustPlatform.buildRustPackage rec {
7 pname = "paging-calculator";
11 inherit pname version;
12 hash = "sha256-uoijIA9xmifxHlMRo5Rh/Qy1wxiiCNLJnDysI01uPvk=";
15 cargoHash = "sha256-RbBlZCRVXZLXvz+/olkh2MqJiWq63AwLvo+/5UGRuyM=";
18 description = "CLI utility that helps calculating page table indices from a virtual address";
20 paging-calculator is a CLI utility written in Rust that helps you finding the indices that a
21 virtual address will have into the page tables on different architectures.
23 It takes a (virtual) address in hexadecimal format and shows you which index is used for
24 which level of the page table.
26 homepage = "https://github.com/phip1611/paging-calculator";
27 changelog = "https://github.com/phip1611/paging-calculator/blob/v${version}/CHANGELOG.md";
28 license = with lib.licenses; [ mit ];
29 maintainers = with lib.maintainers; [ phip1611 ];