mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
84 lines
1.8 KiB
Nix
84 lines
1.8 KiB
Nix
![]() |
{
|
||
|
lib,
|
||
|
buildNpmPackage,
|
||
|
fetchzip,
|
||
|
ripgrep,
|
||
|
makeWrapper,
|
||
|
}:
|
||
|
|
||
|
buildNpmPackage rec {
|
||
|
pname = "amp-cli";
|
||
|
version = "0.0.1747195318-g6d7769";
|
||
|
|
||
|
src = fetchzip {
|
||
|
url = "https://registry.npmjs.org/@sourcegraph/amp/-/amp-${version}.tgz";
|
||
|
hash = "sha256-YoyuZX41l21eTGi9t0rYb4vEE3rSqiue2kIf0PDbaKc=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
cp ${./package-lock.json} package-lock.json
|
||
|
|
||
|
# Create a minimal package.json with just the dependency we need (without devDependencies)
|
||
|
cat > package.json <<EOF
|
||
|
{
|
||
|
"name": "amp-cli",
|
||
|
"version": "0.0.0",
|
||
|
"license": "UNLICENSED",
|
||
|
"dependencies": {
|
||
|
"@sourcegraph/amp": "${version}"
|
||
|
},
|
||
|
"bin": {
|
||
|
"amp": "./bin/amp-wrapper.js"
|
||
|
}
|
||
|
}
|
||
|
EOF
|
||
|
|
||
|
# Create wrapper bin directory
|
||
|
mkdir -p bin
|
||
|
|
||
|
# Create a wrapper script that will be installed by npm
|
||
|
cat > bin/amp-wrapper.js << EOF
|
||
|
#!/usr/bin/env node
|
||
|
require('@sourcegraph/amp/dist/amp.js')
|
||
|
EOF
|
||
|
chmod +x bin/amp-wrapper.js
|
||
|
'';
|
||
|
|
||
|
npmDepsHash = "sha256-NxccnQxATtDBipRKhQWJn0s3PPXPeldrz9DLVq/ftpM=";
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
ripgrep
|
||
|
];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
makeWrapper
|
||
|
];
|
||
|
|
||
|
npmFlags = [
|
||
|
"--no-audit"
|
||
|
"--no-fund"
|
||
|
"--ignore-scripts"
|
||
|
];
|
||
|
|
||
|
# Disable build and prune steps
|
||
|
dontNpmBuild = true;
|
||
|
|
||
|
postInstall = ''
|
||
|
wrapProgram $out/bin/amp \
|
||
|
--prefix PATH : ${lib.makeBinPath [ ripgrep ]}
|
||
|
'';
|
||
|
|
||
|
passthru.updateScript = ./update.sh;
|
||
|
|
||
|
meta = {
|
||
|
description = "Amp is an AI coding agent, in research preview from Sourcegraph. This is the CLI for Amp.";
|
||
|
homepage = "https://github.com/sourcegraph/amp";
|
||
|
downloadPage = "https://www.npmjs.com/package/@sourcegraph/amp";
|
||
|
license = lib.licenses.unfree;
|
||
|
maintainers = [
|
||
|
# Add maintainer(s) here, e.g., lib.maintainers.your_github_username
|
||
|
];
|
||
|
mainProgram = "amp";
|
||
|
};
|
||
|
}
|