powershell-es/flake.nix
fwastring 242fd47f93
Some checks are pending
CI Tests / dotnet (push) Waiting to run
CI Tests / dotnet-1 (push) Waiting to run
CI Tests / dotnet-2 (push) Waiting to run
Emacs End-to-End Tests / ert (push) Waiting to run
Vim End-to-End Tests / themis (push) Waiting to run
works
2026-02-18 13:29:52 +01:00

19 lines
380 B
Nix

{
description = "PowerShellEditorServices (PSES)";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
outputs =
{ self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in
{
packages.${system} = rec {
pses = pkgs.callPackage ./default.nix { };
default = pses;
};
};
}