symbiflow-yosys-plugins: init at 0.8-6021-gd8b2d1a2
This commit is contained in:
parent
c1674d2ace
commit
44fbc60abd
|
@ -0,0 +1,37 @@
|
||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, symbiflow-yosys
|
||||||
|
, zlib
|
||||||
|
, readline
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "symbiflow-yosys-plugins";
|
||||||
|
version = "1.0.0.7-0060-g7454cd6b";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "SymbiFlow";
|
||||||
|
repo = "yosys-symbiflow-plugins";
|
||||||
|
rev = "7454cd6b5e4fd22854e2ada219a5e3c3a06e0717";
|
||||||
|
sha256 = "0r9r31p7fy4ylfrwvwlbivq5a03xrph34blxbxzx2c8bc02mbv0s";
|
||||||
|
};
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [ symbiflow-yosys ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
readline
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
|
||||||
|
makeFlags = [ "PLUGINS_DIR=${placeholder "out"}/share/yosys/plugins" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Yosys SymbiFlow Plugins";
|
||||||
|
homepage = "https://github.com/SymbiFlow/yosys-symbiflow-plugins";
|
||||||
|
license = licenses.isc;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = with maintainers; [ mcaju ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10421,6 +10421,8 @@ in
|
||||||
|
|
||||||
symbiflow-yosys = callPackage ../development/compilers/symbiflow-yosys { };
|
symbiflow-yosys = callPackage ../development/compilers/symbiflow-yosys { };
|
||||||
|
|
||||||
|
symbiflow-yosys-plugins = callPackage ../development/compilers/symbiflow-yosys-plugins { };
|
||||||
|
|
||||||
swiProlog = callPackage ../development/compilers/swi-prolog {
|
swiProlog = callPackage ../development/compilers/swi-prolog {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
jdk = openjdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
jdk = openjdk8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
|
||||||
|
|
Loading…
Reference in New Issue