mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, perl
|
|
# Needed if you want to use it for a perl script with dependencies.
|
|
, extraPerlPackages ? []
|
|
}:
|
|
|
|
let
|
|
perlInterpreter = perl.withPackages(ps: [
|
|
ps.PadWalker
|
|
] ++ extraPerlPackages);
|
|
in buildNpmPackage rec {
|
|
pname = "perl-debug-adapter";
|
|
version = "1.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Nihilus118";
|
|
repo = "perl-debug-adapter";
|
|
rev = version;
|
|
hash = "sha256-IXXKhk4rzsWSPA0RT0L3CZuKlgTWtweZ4dQtruTigRs=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-iw7+YC4qkrTVEJuZ9lnjNlUopTCp+fMNoIjFLutmrMw=";
|
|
|
|
npmBuildScript = "compile";
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix" "PATH" ":" (lib.makeBinPath [ perlInterpreter ])
|
|
];
|
|
passthru = {
|
|
inherit perlInterpreter;
|
|
};
|
|
|
|
meta = {
|
|
description = "Debug adapter, invokes perl -d and handles communication with VS Code or other editors";
|
|
homepage = "https://github.com/Nihilus118/perl-debug-adapter";
|
|
changelog = "https://github.com/Nihilus118/perl-debug-adapter/blob/${version}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ doronbehar ];
|
|
mainProgram = "perl-debug-adapter";
|
|
};
|
|
}
|