yosys-ghdl: Formatting - new lines between inputs and arguments

This commit is contained in:
Doron Behar 2022-10-08 11:17:54 +03:00
parent 0d3debe506
commit cd3fc9ea27

View file

@ -1,5 +1,11 @@
{ stdenv, lib, fetchFromGitHub, pkg-config { stdenv
, yosys, readline, zlib, ghdl , lib
, fetchFromGitHub
, pkg-config
, yosys
, readline
, zlib
, ghdl
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
@ -14,8 +20,15 @@ stdenv.mkDerivation {
sha256 = "01d9wb7sqkmkf2y9bnn3pmhy08khzs5m1d06whxsiwgwnjzfk9mx"; sha256 = "01d9wb7sqkmkf2y9bnn3pmhy08khzs5m1d06whxsiwgwnjzfk9mx";
}; };
buildInputs = [ yosys readline zlib ghdl ]; buildInputs = [
nativeBuildInputs = [ pkg-config ]; yosys
readline
zlib
ghdl
];
nativeBuildInputs = [
pkg-config
];
doCheck = true; doCheck = true;
installPhase = '' installPhase = ''
@ -25,6 +38,7 @@ stdenv.mkDerivation {
meta = with lib; { meta = with lib; {
description = "GHDL plugin for Yosys"; description = "GHDL plugin for Yosys";
homepage = "https://github.com/ghdl/ghdl-yosys-plugin";
license = licenses.isc; license = licenses.isc;
platforms = platforms.all; platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice ];