3
0
Fork 0
forked from mirrors/nixpkgs

magic-vlsi: 8.3.5 -> 8.3.80, co-maintain

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2020-11-12 14:14:08 -06:00
parent a22061adef
commit c1661fa7e1
No known key found for this signature in database
GPG key ID: 25D2038DEB08021D

View file

@ -1,16 +1,20 @@
{ stdenv, fetchurl, m4, tcsh, libX11, tcl, tk, cairo, ncurses, mesa_glu, python3 }:
{ stdenv, fetchurl
, m4, tcsh, libX11, tcl, tk
, cairo, ncurses, mesa_glu, python3
}:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "magic-vlsi";
version = "8.3.5";
version = "8.3.80";
src = fetchurl {
url = "http://opencircuitdesign.com/magic/archive/magic-8.3.5.tgz";
sha256 = "0wv4zmxlqjfaakgp802icn0cd9f8ylkz2sppix83axq8p5cg90yq";
url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz";
sha256 = "0a5x4sh5xsr79pqbgv6221jc4fvaxkg2pvrdhy1cs4bmsc1sbm9j";
};
buildInputs = [ m4 tcsh libX11 tcl tk cairo ncurses mesa_glu ];
nativeBuildInputs = [ python3 ];
enableParallelBuilding = true;
configureFlags = [
"--with-tcl=${tcl}"
@ -22,6 +26,8 @@ stdenv.mkDerivation {
patchShebangs scripts/*
'';
NIX_CFLAGS_COMPILE = "-Wno-implicit-function-declaration";
patches = [
./0001-strip-bin-prefix.patch
./0002-fix-format-security.patch
@ -31,6 +37,6 @@ stdenv.mkDerivation {
description = "VLSI layout tool written in Tcl";
homepage = "http://opencircuitdesign.com/magic/";
license = licenses.mit;
maintainers = [ maintainers.anna328p ];
maintainers = with maintainers; [ anna328p thoughtpolice ];
};
}