~ruther/vhdl-vunit-template

ref: 6bdd527bbcc83d4f1e36a52260355b0810f5fe3d vhdl-vunit-template/flake.nix -rw-r--r-- 1.3 KiB
6bdd527b — Rutherther Initial commit 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  description = "NSV stopwatch";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
    poetry2nix.url = "github:nix-community/poetry2nix";
  };

  outputs = { self, poetry2nix, nixpkgs }:
    let
      system = "x86_64-linux";
      pkgs = nixpkgs.legacyPackages.${system};
      inherit (poetry2nix.lib.mkPoetry2Nix { inherit pkgs; }) mkPoetryPackages defaultPoetryOverrides;
      poetryEnv = mkPoetryPackages {
        projectDir = ./.;
        python = pkgs.python311;
        overrides = defaultPoetryOverrides.extend
          (self: super: {
            vunit-hdl = super.vunit-hdl.overridePythonAttrs(
              attrs: {
                buildInputs = (attrs.buildInputs or []) ++ [ super.setuptools ];
              }
            );
          });
      };
      vhdl-toolchain = pkgs.symlinkJoin {
        name = "vhdl-toolchain";
        meta.mainProgram = "nvc";
        paths = [
          pkgs.ghdl
          pkgs.nvc
          poetryEnv.python
          poetryEnv.poetryPackages
        ];
      };
    in {
      packages.${system}.default = vhdl-toolchain;

      devShells.${system}.default = pkgs.mkShell {
        nativeBuildInputs = [
          vhdl-toolchain
          pkgs.vhdl-ls
          pkgs.gtkwave
        ];

        VUNIT_SIMULATOR = "nvc";
      };
    };
}
Do not follow this link