forked from mirrors/nixpkgs
bluespec: style changes, checkInputs
This commit is contained in:
parent
83088d4503
commit
6e968a8550
|
@ -1,11 +1,27 @@
|
|||
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoconf, automake, fontconfig
|
||||
, gmp-static, gperf, libX11, libpoly, perl, flex, bison, pkg-config, itktcl
|
||||
, incrtcl, tcl, tk, verilog, xorg, yices, zlib, ghc, asciidoctor, tex # docs
|
||||
}:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoconf
|
||||
, automake
|
||||
, fontconfig
|
||||
, libX11
|
||||
, perl
|
||||
, flex
|
||||
, bison
|
||||
, pkg-config
|
||||
, tcl
|
||||
, tk
|
||||
, xorg
|
||||
, yices
|
||||
, zlib
|
||||
, ghc
|
||||
, gmp-static
|
||||
, verilog
|
||||
, asciidoctor
|
||||
, tex }:
|
||||
|
||||
let
|
||||
ghcWithPackages =
|
||||
ghc.withPackages (g: (with g; [ old-time regex-compat syb split ]));
|
||||
ghcWithPackages = ghc.withPackages (g: (with g; [ old-time regex-compat syb split ]));
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "bluespec";
|
||||
|
@ -76,6 +92,13 @@ in stdenv.mkDerivation rec {
|
|||
"STP_STUB=1"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
checkInputs = [
|
||||
gmp-static
|
||||
verilog
|
||||
];
|
||||
|
||||
checkTarget = "check-smoke";
|
||||
|
||||
installPhase = ''
|
||||
|
|
Loading…
Reference in a new issue