Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
693 B
Nix
31 lines
693 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
pkgsCross,
|
|
}:
|
|
let
|
|
inherit (pkgsCross.musl64) rustPlatform;
|
|
in
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "nnd";
|
|
version = "0.50";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "al13n321";
|
|
repo = "nnd";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-PxSiAjciRHhRd0UHlRh7ondvYk9ytTSruO7f7CIYA6w=";
|
|
};
|
|
|
|
cargoHash = "sha256-zTQlqtg1pdLGnAOvl5hN9mKf3bg7jnjrVJYmRgSzcNw=";
|
|
|
|
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";
|
|
};
|
|
})
|