librevisa: remove because its source is gone

The librevisa site and source code have disappeared upstream.

authored by Theodore Ni and committed by Bjørn Forsman ad0d2e34 865ce728

+1 -33
-31
pkgs/development/libraries/librevisa/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, libusb1 }: 2 - 3 - # TODO: add VXI development files, for VXI-11 (TCPIP) support 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "librevisa"; 7 - version = "0.0.20130412"; 8 - 9 - src = fetchurl { 10 - url = "http://www.librevisa.org/download/${pname}-${version}.tar.gz"; 11 - sha256 = "0bjzq23s3xzw0l9qx4l8achrx5id8xdd6r52lvdl4a28dxzbcfhq"; 12 - }; 13 - 14 - nativeBuildInputs = [ pkg-config ]; 15 - buildInputs = [ libusb1 ]; 16 - 17 - meta = with lib; { 18 - description = "Implementation of the VISA standard (for instrument control)"; 19 - longDescription = '' 20 - LibreVISA aims to be a compliant implementation of the VISA standard in a 21 - free software library. 22 - 23 - We currently support targets connected via USB, exposing the USBTMC 24 - interface, and VXI-11 devices. 25 - ''; 26 - homepage = "http://www.librevisa.org/"; 27 - license = licenses.gpl3Plus; 28 - platforms = platforms.linux ++ platforms.darwin; 29 - maintainers = [ maintainers.bjornfor ]; 30 - }; 31 - }
···
+1
pkgs/top-level/aliases.nix
··· 745 librdf = lrdf; # Added 2020-03-22 746 librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22 747 libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19 748 librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24 749 libseat = seatd; # Added 2021-06-24 750 libspotify = throw "libspotify has been removed because Spotify stopped supporting it"; # added 2022-05-29
··· 745 librdf = lrdf; # Added 2020-03-22 746 librecad2 = throw "'librecad2' has been renamed to/replaced by 'librecad'"; # Converted to throw 2022-02-22 747 libressl_3_2 = throw "'libressl_3_2' has reached end-of-life "; # Added 2022-03-19 748 + librevisa = throw "librevisa has been removed because its website and source have disappeared upstream"; # Added 2022-09-23 749 librsync_0_9 = throw "librsync_0_9 has been removed"; # Added 2021-07-24 750 libseat = seatd; # Added 2021-06-24 751 libspotify = throw "libspotify has been removed because Spotify stopped supporting it"; # added 2022-05-29
-2
pkgs/top-level/all-packages.nix
··· 19941 19942 librevenge = callPackage ../development/libraries/librevenge {}; 19943 19944 - librevisa = callPackage ../development/libraries/librevisa { }; 19945 - 19946 librime = callPackage ../development/libraries/librime { 19947 boost = boost174; 19948 };
··· 19941 19942 librevenge = callPackage ../development/libraries/librevenge {}; 19943 19944 librime = callPackage ../development/libraries/librime { 19945 boost = boost174; 19946 };