summary refs log tree commit diff
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-06-02 17:52:01 +0200
committerajs124 <git@ajs124.de>2022-06-02 18:03:52 +0200
commitbc8f6085c3a3cff3851b7e994b12a148f3029c2a (patch)
tree5d93665e708eb116dc1e78d1c06513c2f46527f1
parent8d567a8863a098dce273de7ecf4ddd7c97086db3 (diff)
downloadnixpkgs-bc8f6085c3a3cff3851b7e994b12a148f3029c2a.tar
nixpkgs-bc8f6085c3a3cff3851b7e994b12a148f3029c2a.tar.gz
nixpkgs-bc8f6085c3a3cff3851b7e994b12a148f3029c2a.tar.bz2
nixpkgs-bc8f6085c3a3cff3851b7e994b12a148f3029c2a.tar.lz
nixpkgs-bc8f6085c3a3cff3851b7e994b12a148f3029c2a.tar.xz
nixpkgs-bc8f6085c3a3cff3851b7e994b12a148f3029c2a.tar.zst
nixpkgs-bc8f6085c3a3cff3851b7e994b12a148f3029c2a.zip
stlport: remove after being marked broken for over 18 months
It was marked in commit 75d7b9c0c34b5266a9d6a76d42abb4acc5e0e94a by Vladimír Čunát on 2014-11-26 (commited on 2014-11-27)
-rw-r--r--pkgs/development/libraries/stlport/default.nix27
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/libraries/stlport/default.nix b/pkgs/development/libraries/stlport/default.nix
deleted file mode 100644
index 75004b87ee7..00000000000
--- a/pkgs/development/libraries/stlport/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{lib, stdenv, fetchurl}:
-
-stdenv.mkDerivation rec {
-  pname = "STLport";
-  version = "5.2.1";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/stlport/${pname}-${version}.tar.bz2";
-    sha256 = "1jbgak1m1qk7d4gyn1p2grbws2icsf7grbs3dh44ai9ck1xh0nvm";
-  };
-
-  # fix hardcoded /usr/bin; not recognizing the standard --disable-static flag
-  configurePhase = ''
-    echo Preconf: build/Makefiles/gmake/*/sys.mak
-    for f in build/Makefiles/gmake/*/sys.mak; do
-      substituteInPlace "$f" --replace /usr/bin/ ""
-    done
-    ./configure --prefix=$out
-  '';
-
-  meta = {
-    description = "An implementation of the C++ Standard Library";
-    homepage = "https://sourceforge.net/projects/stlport/";
-    license = lib.licenses.free; # seems BSD-like
-    broken = true; # probably glibc-2.20 -related issue
-  };
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index fdbb8335e45..b4dd76fe17a 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -20771,8 +20771,6 @@ with pkgs;
 
   stegseek = callPackage ../tools/security/stegseek {};
 
-  stlport = callPackage ../development/libraries/stlport { };
-
   streamlink = callPackage ../applications/video/streamlink { };
   streamlink-twitch-gui-bin = callPackage ../applications/video/streamlink-twitch-gui/bin.nix {};