mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
nnd: init at 0.19 (#405806)
This commit is contained in:
commit
e546da7076
2 changed files with 36 additions and 0 deletions
|
@ -22918,6 +22918,11 @@
|
|||
matrix = "@c3n21:matrix.org";
|
||||
githubId = 37077738;
|
||||
};
|
||||
sinjin2300 = {
|
||||
name = "Sinjin";
|
||||
github = "Sinjin2300";
|
||||
githubId = 35543336;
|
||||
};
|
||||
sioodmy = {
|
||||
name = "Antoni Sokołowski";
|
||||
github = "sioodmy";
|
||||
|
|
31
pkgs/by-name/nn/nnd/package.nix
Normal file
31
pkgs/by-name/nn/nnd/package.nix
Normal 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";
|
||||
};
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue