-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.nix
More file actions
23 lines (20 loc) · 742 Bytes
/
default.nix
File metadata and controls
23 lines (20 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
with import <nixpkgs> {};
let
pkgs = import (builtins.fetchGit {
# Descriptive name to make the store path easier to identify
name = "pinned_nix_packages";
url = "https://github.com/nixos/nixpkgs/";
ref = "refs/21.01";
rev = "a7ecde854aee5c4c7cd6177f54a99d2c1ff28a31";
}) {};
in
# Make a new "derivation" that represents our shell
stdenv.mkDerivation {
name = "chisel";
# The packages in the `buildInputs` list will be added to the PATH in our shell
buildInputs = [
pkgs.verilator
pkgs.sbt
pkgs.glibcLocales
];
}