1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-09 09:36:20 +09:00

nnd: init at 0.19 (#405806)

This commit is contained in:
Peder Bergebakken Sundt 2025-05-28 03:06:13 +02:00 committed by GitHub
commit e546da7076
Signed by: github
GPG key ID: B5690EEEBB952194
2 changed files with 36 additions and 0 deletions

View file

@ -22918,6 +22918,11 @@
matrix = "@c3n21:matrix.org";
githubId = 37077738;
};
sinjin2300 = {
name = "Sinjin";
github = "Sinjin2300";
githubId = 35543336;
};
sioodmy = {
name = "Antoni Sokołowski";
github = "sioodmy";

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";
};
})