dragnpkgs/pkgs/rust/zbasefind/default.nix

32 lines
748 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-7/SP+drJWg2c4bsd3d4ge8E9BJZykbWfjgC2lSJhqas=";
meta = {
description = "A firmware base address search tool";
homepage = "https://git.lain.faith/haskal/zbasefind";
license = {
shortName = "fyptl";
fullName = "fuck you pirate this license";
deprecated = false;
free = false;
redistributable = false;
url = "data:text/html,<h1>fuck you pirate this</h1>";
};
maintainers = [];
};
}