Files
ZUT-notatki/uczelnia/2_semestr/programowanie/laby/flake.nix
2026-03-17 14:05:37 +01:00

35 lines
603 B
Nix

{
description = "Programowanie 2";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux"
];
perSystem =
{
config,
self',
inputs',
pkgs,
system,
...
}:
{
devShells.default = pkgs.mkShell {
packages = with pkgs; [
boost
catch2
gnumake
];
};
};
};
}