summary refs log tree commit diff
path: root/pkgs/development/libraries/qwt
diff options
context:
space:
mode:
authorWill Cohen <willcohen@users.noreply.github.com>2022-03-23 16:30:00 -0400
committerWill Cohen <willcohen@users.noreply.github.com>2022-03-26 13:35:30 -0400
commitfbc8d491eca5b547d8cce39964d8650a40d3f4c6 (patch)
tree1a4b826f462c277f1bac88fe8da8cd70a01a4f7b /pkgs/development/libraries/qwt
parentf405c5987407fda41903c5d6ff311fdad7430ef8 (diff)
downloadnixpkgs-fbc8d491eca5b547d8cce39964d8650a40d3f4c6.tar
nixpkgs-fbc8d491eca5b547d8cce39964d8650a40d3f4c6.tar.gz
nixpkgs-fbc8d491eca5b547d8cce39964d8650a40d3f4c6.tar.bz2
nixpkgs-fbc8d491eca5b547d8cce39964d8650a40d3f4c6.tar.lz
nixpkgs-fbc8d491eca5b547d8cce39964d8650a40d3f4c6.tar.xz
nixpkgs-fbc8d491eca5b547d8cce39964d8650a40d3f4c6.tar.zst
nixpkgs-fbc8d491eca5b547d8cce39964d8650a40d3f4c6.zip
qwt: remove qwt v5.x derivation
Diffstat (limited to 'pkgs/development/libraries/qwt')
-rw-r--r--pkgs/development/libraries/qwt/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/development/libraries/qwt/default.nix b/pkgs/development/libraries/qwt/default.nix
deleted file mode 100644
index a5dcfedb849..00000000000
--- a/pkgs/development/libraries/qwt/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ lib, stdenv, fetchurl, qt4, qmake4Hook }:
-
-stdenv.mkDerivation rec {
-  pname = "qwt";
-  version = "5.2.3";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/qwt/${pname}-${version}.tar.bz2";
-    sha256 = "1dqa096mm6n3bidfq2b67nmdsvsw4ndzzd1qhl6hn8skcwqazzip";
-  };
-
-  propagatedBuildInputs = [ qt4 ];
-  nativeBuildInputs = [ qmake4Hook ];
-
-  postPatch = ''
-    sed -e "s@\$\$\[QT_INSTALL_PLUGINS\]@$out/lib/qt4/plugins@" -i designer/designer.pro
-    sed -e "s|INSTALLBASE.*=.*|INSTALLBASE = $out|g" -i qwtconfig.pri
-  '';
-
-  preConfigure = ''
-    qmakeFlags="$qmakeFlags INSTALLBASE=$out -after doc.path=$out/share/doc/${pname}-${version}"
-  '';
-
-  meta = with lib; {
-    description = "Qt widgets for technical applications";
-    homepage = "http://qwt.sourceforge.net/";
-    # LGPL 2.1 plus a few exceptions (more liberal)
-    license = lib.licenses.qwt;
-    platforms = platforms.unix;
-    maintainers = [ maintainers.bjornfor ];
-  };
-}