69 lines
1.7 KiB
Nix
69 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
stdenv,
|
|
autoPatchelfHook,
|
|
zlib,
|
|
}:
|
|
|
|
let
|
|
inherit (stdenv) hostPlatform;
|
|
sources = {
|
|
x86_64-linux = fetchurl {
|
|
url = "https://downloads.cursor.com/lab/2026.07.16-899851b/linux/x64/agent-cli-package.tar.gz";
|
|
hash = "sha256-EGrPazo3gc0nkDhyarxPefmHRJufUhmw9uYtlsiP7m0=";
|
|
};
|
|
aarch64-linux = fetchurl {
|
|
url = "https://downloads.cursor.com/lab/2026.07.16-899851b/linux/arm64/agent-cli-package.tar.gz";
|
|
hash = "sha256-jujK8/VKymxztowTwNZL25ibGmXftldEFNmwMNDRCRg=";
|
|
};
|
|
aarch64-darwin = fetchurl {
|
|
url = "https://downloads.cursor.com/lab/2026.07.16-899851b/darwin/arm64/agent-cli-package.tar.gz";
|
|
hash = "sha256-wM17Y8AftjtE4zx6JhNDLo/YyxOIHacqwWE8nxQIEV8=";
|
|
};
|
|
};
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "cursor-cli";
|
|
version = "0-unstable-2026-07-16";
|
|
|
|
src = sources.${hostPlatform.system};
|
|
|
|
buildInputs = lib.optionals hostPlatform.isLinux [
|
|
zlib
|
|
];
|
|
|
|
nativeBuildInputs = lib.optionals hostPlatform.isLinux [
|
|
autoPatchelfHook
|
|
stdenv.cc.cc.lib
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share/cursor-agent
|
|
cp -r * $out/share/cursor-agent/
|
|
ln -s $out/share/cursor-agent/cursor-agent $out/bin/cursor-agent
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
inherit sources;
|
|
updateScript = ./update.sh;
|
|
};
|
|
|
|
meta = {
|
|
description = "Cursor CLI";
|
|
homepage = "https://cursor.com/cli";
|
|
license = lib.licenses.unfree;
|
|
maintainers = with lib.maintainers; [
|
|
sudosubin
|
|
andrewbastin
|
|
];
|
|
platforms = builtins.attrNames sources;
|
|
mainProgram = "cursor-agent";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
};
|
|
}
|