46 lines
922 B
Nix
46 lines
922 B
Nix
{
|
|
description = "Zig Template";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
nixpkgs,
|
|
flake-utils,
|
|
...
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (
|
|
system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
nativeBuildInputs = with pkgs; [
|
|
zig
|
|
zls
|
|
python312
|
|
];
|
|
|
|
buildInputs = with pkgs; [
|
|
gdb
|
|
lldb
|
|
nixfmt
|
|
];
|
|
in
|
|
{
|
|
devShells.default = pkgs.mkShell { inherit nativeBuildInputs buildInputs; };
|
|
|
|
packages.default = pkgs.stdenv.mkDerivation {
|
|
pname = "Owa";
|
|
version = "0.0.1";
|
|
src = ./.;
|
|
|
|
nativeBuildInputs = nativeBuildInputs ++ [
|
|
pkgs.zig.hook
|
|
];
|
|
inherit buildInputs;
|
|
};
|
|
}
|
|
);
|
|
}
|