nnd: init at 0.19

Co-authored-by: Tom van Dijk <18gatenmaker6@gmail.com>
This commit is contained in:
Sinjin23000 2025-05-09 23:06:24 -07:00
parent a9895197dc
commit e3352ec0b8

View file

@ -0,0 +1,31 @@
{
lib,
fetchFromGitHub,
pkgsCross,
}:
let
inherit (pkgsCross.musl64) rustPlatform;
in
rustPlatform.buildRustPackage (finalAttrs: {
pname = "nnd";
version = "0.19";
src = fetchFromGitHub {
owner = "al13n321";
repo = "nnd";
tag = "v${finalAttrs.version}";
hash = "sha256-DjJDNsyOrDLaMruGLP3arfrCs/7hW24wfjvPncndY+Q=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-Iwipxy0xKDyFLMmdB2FQve6DULX+46Pi9rOaK0bDTB0=";
meta = {
description = "Debugger for Linux";
homepage = "https://github.com/al13n321/nnd/tree/main";
license = lib.licenses.asl20;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [ sinjin2300 ];
mainProgram = "nnd";
};
})