summary refs log tree commit diff
path: root/pkgs/applications/science/electronics
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-06-13 02:42:36 +0200
committerajs124 <git@ajs124.de>2023-09-04 13:55:29 +0200
commit3d1d7419d49b0fe86d757123f63d772218afe844 (patch)
tree5ed63d16d6166f0e8d9efa4c145a210cfa43fdb2 /pkgs/applications/science/electronics
parent9a87752f0b1fd2ea5fd8d0a0995ef812a018a601 (diff)
downloadnixpkgs-3d1d7419d49b0fe86d757123f63d772218afe844.tar
nixpkgs-3d1d7419d49b0fe86d757123f63d772218afe844.tar.gz
nixpkgs-3d1d7419d49b0fe86d757123f63d772218afe844.tar.bz2
nixpkgs-3d1d7419d49b0fe86d757123f63d772218afe844.tar.lz
nixpkgs-3d1d7419d49b0fe86d757123f63d772218afe844.tar.xz
nixpkgs-3d1d7419d49b0fe86d757123f63d772218afe844.tar.zst
nixpkgs-3d1d7419d49b0fe86d757123f63d772218afe844.zip
qucs: remove
Diffstat (limited to 'pkgs/applications/science/electronics')
-rw-r--r--pkgs/applications/science/electronics/qucs/cmakelists.patch34
-rw-r--r--pkgs/applications/science/electronics/qucs/default.nix30
2 files changed, 0 insertions, 64 deletions
diff --git a/pkgs/applications/science/electronics/qucs/cmakelists.patch b/pkgs/applications/science/electronics/qucs/cmakelists.patch
deleted file mode 100644
index 27066f09c84..00000000000
--- a/pkgs/applications/science/electronics/qucs/cmakelists.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff --git i/qucs-core/CMakeLists.txt w/qucs-core/CMakeLists.txt
-index 2dbbd41..d174b50 100644
---- i/qucs-core/CMakeLists.txt
-+++ w/qucs-core/CMakeLists.txt
-@@ -158,26 +158,9 @@ ENDIF()
- 
- #
- # Need Bison
--#
--# This is a HACK to get arround a PATH issue with Qt Creator on OSX.
--# It seams impossible to pass a custom PATH to Qt Creator on OSX, ie, cannot prepend `/usr/local/bin/` for intance.
--# The FIND_PACKAGE fails. For now we provide a fallback with a custom FIND_PROGRAM. The variable BISON_DIR is also available.
--IF(WIN32)
--  FIND_PACKAGE(BISON 2.4 REQUIRED)
--  IF(BISON_FOUND)
--    #MESSAGE(STATUS "Found bison: ${BISON_EXECUTABLE} / Version: ${BISON_VERSION}" )
--  ENDIF()
--ELSE()  # Linux, OSX
--  # use -DBISON_DIR=/path/ to provide the path to bison
--  FIND_PROGRAM( BISON_EXECUTABLE bison
--    PATHS /usr/local/bin/ /opt/local/bin/ /usr/bin ${BISON_DIR}
--    DOC "bison path"
--    NO_DEFAULT_PATH )
--  IF(BISON_EXECUTABLE )
--    MESSAGE(STATUS "Found bison: " ${BISON_EXECUTABLE})
--  ELSE()
--	  MESSAGE(FATAL_ERROR "Unable to find bison. Try to provide -DBISON_DIR=[path]")
--  ENDIF()
-+FIND_PACKAGE(BISON 2.4 REQUIRED)
-+IF(BISON_FOUND)
-+  #MESSAGE(STATUS "Found bison: ${BISON_EXECUTABLE} / Version: ${BISON_VERSION}" )
- ENDIF()
- 
- #
diff --git a/pkgs/applications/science/electronics/qucs/default.nix b/pkgs/applications/science/electronics/qucs/default.nix
deleted file mode 100644
index eeb10b3a5a1..00000000000
--- a/pkgs/applications/science/electronics/qucs/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{lib, stdenv, fetchFromGitHub, flex, bison, qt4, libX11, cmake, gperf, adms }:
-
-stdenv.mkDerivation rec {
-  version = "0.0.19";
-  pname = "qucs";
-
-  src = fetchFromGitHub {
-    owner = "Qucs";
-    repo = "qucs";
-    rev = "qucs-${version}";
-    sha256 = "106h3kjyg7c0hkmzkin7h8fcl32n60835121b2qqih8ixi6r5id6";
-  };
-
-  QTDIR=qt4;
-
-  patches = [
-    ./cmakelists.patch
-  ];
-
-  nativeBuildInputs = [ cmake flex bison ];
-  buildInputs = [ qt4 libX11 gperf adms ];
-
-  meta = {
-    description = "Integrated circuit simulator";
-    homepage = "https://qucs.sourceforge.net";
-    license = lib.licenses.gpl2Plus;
-    maintainers = with lib.maintainers; [viric];
-    platforms = with lib.platforms; linux;
-  };
-}