nixpkgs/pkgs/development/tools/paging-calculator/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1 KiB
Nix
Raw Normal View History

2023-02-17 21:35:24 +01:00
{ fetchCrate
, lib
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "paging-calculator";
2023-09-22 15:24:30 +02:00
version = "0.3.0";
2023-02-17 21:35:24 +01:00
src = fetchCrate {
inherit pname version;
2023-09-22 15:24:30 +02:00
hash = "sha256-uoijIA9xmifxHlMRo5Rh/Qy1wxiiCNLJnDysI01uPvk=";
2023-02-17 21:35:24 +01:00
};
2023-09-22 15:24:30 +02:00
cargoHash = "sha256-RbBlZCRVXZLXvz+/olkh2MqJiWq63AwLvo+/5UGRuyM=";
2023-02-17 21:35:24 +01:00
meta = {
description = "CLI utility that helps calculating page table indices from a virtual address";
mainProgram = "paging-calculator";
2023-02-17 21:35:24 +01:00
longDescription = ''
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.
2023-02-17 21:35:24 +01:00
It takes a (virtual) address in hexadecimal format and shows you which index is used for
which level of the page table.
2023-02-17 21:35:24 +01:00
'';
homepage = "https://github.com/phip1611/paging-calculator";
changelog = "https://github.com/phip1611/paging-calculator/blob/v${version}/CHANGELOG.md";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ phip1611 ];
};
}