You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
476 B
20 lines
476 B
{ |
|
description = "ziglings"; |
|
|
|
inputs = { |
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; |
|
zls.url = "github:zigtools/zls?ref=0.15.0"; # TODO(jsb): Update this when bumping zig version |
|
}; |
|
|
|
outputs = { self, nixpkgs, zls }: |
|
let |
|
pkgs = nixpkgs.legacyPackages.x86_64-linux; |
|
in { |
|
devShells.x86_64-linux.default = pkgs.mkShell { |
|
buildInputs = [ |
|
pkgs.zig |
|
zls.packages.x86_64-linux.zls |
|
]; |
|
}; |
|
}; |
|
}
|
|
|