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
61 lines
1.7 KiB
Nix
61 lines
1.7 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
callPackage,
|
|
vscode-generic,
|
|
fetchurl,
|
|
nixosTests,
|
|
commandLineArgs ? "",
|
|
useVSCodeRipgrep ? stdenv.hostPlatform.isDarwin,
|
|
}:
|
|
let
|
|
info =
|
|
(lib.importJSON ./info.json)."${stdenv.hostPlatform.system}"
|
|
or (throw "windsurf: unsupported system ${stdenv.hostPlatform.system}");
|
|
in
|
|
callPackage vscode-generic {
|
|
inherit commandLineArgs useVSCodeRipgrep;
|
|
|
|
inherit (info) version vscodeVersion;
|
|
pname = "windsurf";
|
|
|
|
executableName = "windsurf";
|
|
longName = "Windsurf";
|
|
shortName = "windsurf";
|
|
libraryName = "windsurf";
|
|
iconName = "windsurf";
|
|
|
|
sourceRoot = if stdenv.hostPlatform.isDarwin then "Windsurf.app" else "Windsurf";
|
|
|
|
src = fetchurl { inherit (info) url sha256; };
|
|
|
|
tests = nixosTests.vscodium;
|
|
|
|
updateScript = ./update/update.mts;
|
|
|
|
# Editing the `codium` binary (and shell scripts) within the app bundle causes the bundle's signature
|
|
# to be invalidated, which prevents launching starting with macOS Ventura, because VSCodium is notarized.
|
|
# See https://eclecticlight.co/2022/06/17/app-security-changes-coming-in-ventura/ for more information.
|
|
dontFixup = stdenv.hostPlatform.isDarwin;
|
|
|
|
meta = {
|
|
description = "Agentic IDE powered by AI Flow paradigm";
|
|
longDescription = ''
|
|
The first agentic IDE, and then some.
|
|
The Windsurf Editor is where the work of developers and AI truly flow together, allowing for a coding experience that feels like literal magic.
|
|
'';
|
|
homepage = "https://codeium.com/windsurf";
|
|
license = lib.licenses.unfree;
|
|
maintainers = with lib.maintainers; [
|
|
sarahec
|
|
xiaoxiangmoe
|
|
];
|
|
platforms = [
|
|
"aarch64-darwin"
|
|
"x86_64-darwin"
|
|
"x86_64-linux"
|
|
];
|
|
sourceProvenance = [ lib.sourceTypes.binaryBytecode ];
|
|
};
|
|
}
|