mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
tkgate 2.x: remove dead package
Broken since April 2014. Homepage leads to an expired domain.
This commit is contained in:
parent
a8265ea458
commit
d1232049fb
2 changed files with 0 additions and 37 deletions
|
@ -1,34 +0,0 @@
|
|||
{ stdenv, fetchurl, tcl, tk, libX11, glibc }:
|
||||
|
||||
let
|
||||
libiconvInc = stdenv.lib.optionalString stdenv.isLinux "${glibc}/include";
|
||||
libiconvLib = stdenv.lib.optionalString stdenv.isLinux "${glibc}/lib";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tkgate-2.0-b10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.tkgate.org/downloads/${name}.tgz";
|
||||
sha256 = "0mr061xcwjmd8nhyjjcw2dzxqi53hv9xym9xsp0cw98knz2skxjf";
|
||||
};
|
||||
|
||||
buildInputs = [ tcl tk libX11 ];
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
patchPhase = ''
|
||||
sed -i configure \
|
||||
-e 's|TKGATE_INCDIRS=.*|TKGATE_INCDIRS="${tcl}/include ${tk}/include ${libiconvInc}"|' \
|
||||
-e 's|TKGATE_LIBDIRS=.*|TKGATE_LIBDIRS="${tcl}/lib ${tk}/lib ${libiconvLib}"|'
|
||||
sed -i options.h \
|
||||
-e 's|.* #define TCL_LIBRARY .*|#define TCL_LIBRARY "${tcl}/${tcl.libdir}"|' \
|
||||
-e 's|.* #define TK_LIBRARY .*|#define TK_LIBRARY "${tk}/lib/${tk.libPrefix}"|'
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Event driven digital circuit simulator with a TCL/TK-based graphical editor";
|
||||
homepage = "http://www.tkgate.org/";
|
||||
license = stdenv.lib.licenses.gpl2Plus;
|
||||
broken = true;
|
||||
};
|
||||
}
|
|
@ -3491,9 +3491,6 @@ let
|
|||
|
||||
tkgate = callPackage ../applications/science/electronics/tkgate/1.x.nix { };
|
||||
|
||||
# The newer package is low-priority because it segfaults at startup.
|
||||
tkgate2 = lowPrio (callPackage ../applications/science/electronics/tkgate/2.x.nix { });
|
||||
|
||||
tm = callPackage ../tools/system/tm { };
|
||||
|
||||
tradcpp = callPackage ../development/tools/tradcpp { };
|
||||
|
|
Loading…
Reference in a new issue