about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/compilers/yosys/plugins/ghdl.nix
blob: 35f3ef2bcc88c9233f7c6ffa9180e645c6c70580 (plain) (blame)
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
{ stdenv, lib, fetchFromGitHub, pkg-config
, yosys, readline, zlib, ghdl
}:

stdenv.mkDerivation {
  pname = "yosys-ghdl";
  version = "2021.01.25";

  src = fetchFromGitHub {
    owner  = "ghdl";
    repo   = "ghdl-yosys-plugin";
    rev    = "cba859cacf8c6631146dbdaa0f297c060b5a68cd";
    sha256 = "01d9wb7sqkmkf2y9bnn3pmhy08khzs5m1d06whxsiwgwnjzfk9mx";
  };

  buildInputs = [ yosys readline zlib ghdl ];
  nativeBuildInputs = [ pkg-config ];

  doCheck = true;
  installPhase = ''
    mkdir -p $out/share/yosys/plugins
    cp ghdl.so $out/share/yosys/plugins/ghdl.so
  '';

  meta = with lib; {
    description = "GHDL plugin for Yosys";
    license     = licenses.isc;
    platforms   = platforms.all;
    maintainers = with maintainers; [ thoughtpolice ];
  };
}