Skip to content

Commit

Permalink
verilog: cleanup
Browse files Browse the repository at this point in the history
Meta attributes were out of date or not in current style,
and some attributes of derivation were redundant.
  • Loading branch information
drewrisinger committed Sep 22, 2020
1 parent 4eb5522 commit 0d9a6e2
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions pkgs/applications/science/electronics/verilog/default.nix
Expand Up @@ -15,11 +15,6 @@ stdenv.mkDerivation rec {

enableParallelBuilding = true;

prePatch = ''
substituteInPlace configure.in \
--replace "AC_CHECK_LIB(termcap, tputs)" "AC_CHECK_LIB(termcap, tputs)"
'';

preConfigure = ''
chmod +x $PWD/autoconf.sh
$PWD/autoconf.sh
Expand All @@ -31,9 +26,8 @@ stdenv.mkDerivation rec {

meta = with stdenv.lib; {
description = "Icarus Verilog compiler";
repositories.git = "https://github.com/steveicarus/iverilog.git";
homepage = "http://iverilog.icarus.com/";
license = licenses.lgpl21;
license = with licenses; [ gpl2Plus lgpl21Plus] ;
maintainers = with maintainers; [ winden ];
platforms = platforms.all;
};
Expand Down

0 comments on commit 0d9a6e2

Please sign in to comment.