Skip to content

Commit

Permalink
Update shell.nix (YosysHQ#1347)
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanG077 authored Aug 12, 2024
1 parent e9e7dce commit f199c3e
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,8 @@
{ pkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/23.05.tar.gz) {} }:
{ pkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/24.05.tar.gz) {} }:

let
pythonPkgs = pkgs.python3Packages;
boostPython = pkgs.boost.override { python = pythonPkgs.python; enablePython = true; };
vscode = pkgs.vscode-with-extensions.override {
vscodeExtensions = with pkgs.vscode-extensions; [
bbenoist.nix
ms-vscode.cpptools
ms-vscode.cmake-tools
twxs.cmake
usernamehw.errorlens
llvm-vs-code-extensions.vscode-clangd
] ++ pkgs.vscode-utils.extensionsFromVscodeMarketplace [
{
name = "VerilogHDL";
publisher = "mshr-h";
version = "1.11.4";
sha256 = "sha256-4JY0eaN2IkwHv8u8X6ejDXk6vT1qB4vJjWdIy8b/jj4=";
}
];
};
in pkgs.mkShell {
buildInputs = with pkgs; [
cmake
Expand All @@ -37,7 +20,6 @@ in pkgs.mkShell {
valgrind
cling
gdb
vscode
];

shellHook = ''
Expand Down

0 comments on commit f199c3e

Please sign in to comment.