diff --git a/doc/release-notes/rl-2511.section.md b/doc/release-notes/rl-2511.section.md index c50ae7739abd..d87d4348d8fb 100644 --- a/doc/release-notes/rl-2511.section.md +++ b/doc/release-notes/rl-2511.section.md @@ -17,6 +17,7 @@ - `base16-builder` node package has been removed due to lack of upstream maintenance. - `gentium` package now provides `Gentium-*.ttf` files, and not `GentiumPlus-*.ttf` files like before. The font identifiers `Gentium Plus*` are available in the `gentium-plus` package, and if you want to use the more recently updated package `gentium` [by sil](https://software.sil.org/gentium/), you should update your configuration files to use the `Gentium` font identifier. +- `space-orbit` package has been removed due to lack of upstream maintenance. Debian upstream stopped tracking it in 2011. ## Other Notable Changes {#sec-nixpkgs-release-25.11-notable-changes} diff --git a/pkgs/by-name/sp/space-orbit/package.nix b/pkgs/by-name/sp/space-orbit/package.nix deleted file mode 100644 index a39816fafcc1..000000000000 --- a/pkgs/by-name/sp/space-orbit/package.nix +++ /dev/null @@ -1,66 +0,0 @@ -{ - lib, - stdenv, - fetchurl, - libGLU, - libGL, - libXi, - libXt, - libXext, - libX11, - libXmu, - libglut, -}: - -stdenv.mkDerivation rec { - pname = "space-orbit"; - version = "1.01"; - patchversion = "9"; - - buildInputs = [ - libGLU - libGL - libXi - libXt - libXext - libX11 - libXmu - libglut - ]; - - src = fetchurl { - url = "mirror://debian/pool/main/s/space-orbit/space-orbit_${version}.orig.tar.gz"; - sha256 = "1kx69f9jqnfzwjh47cl1df8p8hn3bnp6bznxnb6c4wx32ijn5gri"; - }; - - patches = [ - (fetchurl { - url = "mirror://debian/pool/main/s/space-orbit/space-orbit_${version}-${patchversion}.diff.gz"; - sha256 = "1v3s97day6fhv08l2rn81waiprhi1lfyjjsj55axfh6n6zqfn1w2"; - }) - ]; - - preBuild = '' - cd src - sed -e 's@/usr/share/games/orbit/@'$out'/dump/@g' -i *.c - sed -e '/DIR=/d; s/-lesd//; s/-DESD//;' -i Makefile - ''; - - installPhase = '' - mkdir -p $out/bin - cp -r .. $out/dump - cat >$out/bin/space-orbit <