Files
TDT4205/ps2/flake.nix
2026-02-14 12:02:16 +01:00

22 lines
444 B
Nix

{
description = "devshell for compilers/ps2";
inputs.nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
devShells.x86_64-linux.default = pkgs.mkShell {
buildInputs = with pkgs; [
flex
bison
gdb
cmake
libgcc
];
};
};
}