summaryrefslogtreecommitdiff
path: root/derivations/windsurf/flake.nix
blob: dea1732ca5ca86c2a983b4b78f7debe52c1464f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  # https://github.com/dtgagnon/nix-config/tree/main/packages/windsurf
  description = "Windsurf flake";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
  };

  outputs = {
    self,
    nixpkgs,
  }: let
    system = "x86_64-linux";
    pkgs = nixpkgs.legacyPackages.${system};
  in {
    packages.${system}.default = pkgs.callPackage ./windsurf.nix {
      inherit (pkgs) lib stdenv;
      inherit nixpkgs;
    };
  };
}