From ad0d2e3453c3b96f2209f637c16c8a1ffe6554e5 Mon Sep 17 00:00:00 2001 From: Theodore Ni <3806110+tjni@users.noreply.github.com> Date: Fri, 23 Sep 2022 09:23:12 -0700 Subject: [PATCH] librevisa: remove because its source is gone The librevisa site and source code have disappeared upstream. --- .../libraries/librevisa/default.nix | 31 ------------------- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 1 insertion(+), 33 deletions(-) delete mode 100644 pkgs/development/libraries/librevisa/default.nix diff --git a/pkgs/development/libraries/librevisa/default.nix b/pkgs/development/libraries/librevisa/default.nix deleted file mode 100644 index 12d1da460fb9..000000000000 --- a/pkgs/development/libraries/librevisa/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ lib, stdenv, fetchurl, pkg-config, libusb1 }: - -# TODO: add VXI development files, for VXI-11 (TCPIP) support - -stdenv.mkDerivation rec { - pname = "librevisa"; - version = "0.0.20130412"; - - src = fetchurl { - url = "http://www.librevisa.org/download/${pname}-${version}.tar.gz"; - sha256 = "0bjzq23s3xzw0l9qx4l8achrx5id8xdd6r52lvdl4a28dxzbcfhq"; - }; - - nativeBuildInputs = [ pkg-config ]; - buildInputs = [ libusb1 ]; - - meta = with lib; { - description = "Implementation of the VISA standard (for instrument control)"; - longDescription = '' - LibreVISA aims to be a compliant implementation of the VISA standard in a - free software library. - - We currently support targets connected via USB, exposing the USBTMC - interface, and VXI-11 devices. - ''; - homepage = "http://www.librevisa.org/"; - license = licenses.gpl3Plus; - platforms = platforms.linux ++ platforms.darwin; - maintainers = [ maintainers.bjornfor ]; - }; -} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 8ae2284377c0..0e63de316bd5 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -745,6 +745,7 @@ mapAliases ({ librdf = lrdf; # Added 2020-03-22 librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22 libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19 + librevisa = throw "librevisa has been removed because its website and source have disappeared upstream"; # Added 2022-09-23 librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24 libseat = seatd; # Added 2021-06-24 libspotify = throw "libspotify has been removed because Spotify stopped supporting it"; # added 2022-05-29 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0714de85c825..500c3e959d24 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19941,8 +19941,6 @@ with pkgs; librevenge = callPackage ../development/libraries/librevenge {}; - librevisa = callPackage ../development/libraries/librevisa { }; - librime = callPackage ../development/libraries/librime { boost = boost174; };