mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
nnd: init at 0.19
Co-authored-by: Tom van Dijk <18gatenmaker6@gmail.com>
This commit is contained in:
parent
a9895197dc
commit
e3352ec0b8
1 changed files with 31 additions and 0 deletions
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