26 lines
611 B
Nix
26 lines
611 B
Nix
{
|
|
lib,
|
|
fetchgit,
|
|
rustPlatform,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "zbasefind";
|
|
version = "0.1.0";
|
|
src = fetchgit {
|
|
url = "https://git.lain.faith/haskal/${pname}.git";
|
|
rev = version;
|
|
hash = "sha256-orvXNhM1WKlJ6j5Nuap0kZarydcujoEmF+OrdX7iFmA=";
|
|
};
|
|
|
|
cargoHash = "sha256-m8lXHfj6W/qltK+WrT0rE0gDNvvhghcXkeiX3Slx9X8=";
|
|
|
|
meta = {
|
|
description = "A firmware base address search tool";
|
|
homepage = "https://git.lain.faith/haskal/zbasefind";
|
|
license = lib.licenses.fyptl;
|
|
maintainers = [];
|
|
mainProgram = "zbasefind";
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|