magic-vlsi 8.3.459 -> 8.3.460 https://repology.org/project/magic/versions attrpath: magic-vlsi Checking auto update branch... No auto update branch exists Old version 8.3.459" not present in master derivation file with contents: { lib, stdenv , fetchurl , python3 , m4 , cairo , libX11 , mesa_glu , ncurses , tcl , tcsh , tk }: stdenv.mkDerivation rec { pname = "magic-vlsi"; version = "8.3.460"; src = fetchurl { url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz"; sha256 = "sha256-MiwwCVpbmEuGwY36/ctfD0xK4RL5tolM/YPSHLIzrgk="; }; nativeBuildInputs = [ python3 ]; buildInputs = [ cairo libX11 m4 mesa_glu ncurses tcl tcsh tk ]; enableParallelBuilding = true; configureFlags = [ "--with-tcl=${tcl}" "--with-tk=${tk}" "--disable-werror" ]; postPatch = '' patchShebangs scripts/* ''; env.NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration"; meta = with lib; { description = "VLSI layout tool written in Tcl"; homepage = "http://opencircuitdesign.com/magic/"; license = licenses.mit; maintainers = with maintainers; [ thoughtpolice AndersonTorres ]; }; }