magic-vlsi: 8.3.80 -> 8.3.109
Also, add myself to maintainers list.
This commit is contained in:
parent
cd3271e5b9
commit
e8183d4687
@ -1,19 +1,37 @@
|
|||||||
{ stdenv, fetchurl
|
{ stdenv
|
||||||
, m4, tcsh, libX11, tcl, tk
|
, fetchurl
|
||||||
, cairo, ncurses, mesa_glu, python3
|
, python3
|
||||||
|
, m4
|
||||||
|
, cairo
|
||||||
|
, libX11
|
||||||
|
, mesa_glu
|
||||||
|
, ncurses
|
||||||
|
, tcl
|
||||||
|
, tcsh
|
||||||
|
, tk
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "magic-vlsi";
|
pname = "magic-vlsi";
|
||||||
version = "8.3.80";
|
version = "8.3.109";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz";
|
url = "http://opencircuitdesign.com/magic/archive/magic-${version}.tgz";
|
||||||
sha256 = "0a5x4sh5xsr79pqbgv6221jc4fvaxkg2pvrdhy1cs4bmsc1sbm9j";
|
sha256 = "sha256-ZK4OF5XwjW1OJmOVUFqLklfpM10eIwCILygqIyjRbEQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ m4 tcsh libX11 tcl tk cairo ncurses mesa_glu ];
|
|
||||||
nativeBuildInputs = [ python3 ];
|
nativeBuildInputs = [ python3 ];
|
||||||
|
buildInputs = [
|
||||||
|
cairo
|
||||||
|
libX11
|
||||||
|
m4
|
||||||
|
mesa_glu
|
||||||
|
ncurses
|
||||||
|
tcl
|
||||||
|
tcsh
|
||||||
|
tk
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
@ -37,6 +55,6 @@ stdenv.mkDerivation rec {
|
|||||||
description = "VLSI layout tool written in Tcl";
|
description = "VLSI layout tool written in Tcl";
|
||||||
homepage = "http://opencircuitdesign.com/magic/";
|
homepage = "http://opencircuitdesign.com/magic/";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ anna328p thoughtpolice ];
|
maintainers = with maintainers; [ anna328p thoughtpolice AndersonTorres ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user