Skip to content

Commit

Permalink
add gcc 13 flake
Browse files Browse the repository at this point in the history
  • Loading branch information
Snektron committed Mar 20, 2024
1 parent 9b19712 commit 7f09fc0
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
27 changes: 27 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
};

outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.${system}.default = pkgs.gcc13Stdenv.mkDerivation {
name = "pareas-dev";
nativeBuildInputs = [
pkgs.meson
pkgs.futhark
pkgs.ninja
];
};
};
}

0 comments on commit 7f09fc0

Please sign in to comment.