1
1
Fork 0
mirror of https://github.com/the-nix-way/dev-templates synced 2024-05-19 05:06:21 +02:00
github.com_the-nix-way_dev-.../zig/flake.nix

29 lines
561 B
Nix
Raw Normal View History

2022-07-28 23:20:46 +02:00
{
description = "A Nix-flake-based Zig development environment";
2022-08-20 12:06:53 +02:00
inputs = {
2023-03-06 12:28:29 +01:00
nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
2022-08-20 12:06:53 +02:00
flake-utils.url = "github:numtide/flake-utils";
};
2022-07-28 23:20:46 +02:00
outputs =
{ self
, nixpkgs
2023-03-06 12:28:29 +01:00
, flake-utils
}:
2022-07-28 23:20:46 +02:00
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in
{
2022-10-12 23:42:34 +02:00
devShells.default = pkgs.mkShell {
2023-02-15 01:20:41 +01:00
packages = with pkgs; [ zig ];
2022-07-28 23:20:46 +02:00
shellHook = ''
echo "zig `${pkgs.zig}/bin/zig version`"
'';
};
});
2022-07-28 23:20:46 +02:00
}