Unverified Commit e792d7fe authored by K900's avatar K900 Committed by GitHub
Browse files

Merge pull request #264442 from anthonyroussel/update-url-redirects

treewide: fix redirected and broken URLs
parents 28ce810d e30f48be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -353,7 +353,7 @@ In a case a contributor definitively leaves the Nix community, they should creat
# Flow of merged pull requests

After a pull request is merged, it eventually makes it to the [official Hydra CI](https://hydra.nixos.org/).
Hydra regularly evaluates and builds Nixpkgs, updating [the official channels](http://channels.nixos.org/) when specific Hydra jobs succeeded.
Hydra regularly evaluates and builds Nixpkgs, updating [the official channels](https://channels.nixos.org/) when specific Hydra jobs succeeded.
See [Nix Channel Status](https://status.nixos.org/) for the current channels and their state.
Here's a brief overview of the main Git branches and what channels they're used for:

+1 −1
Original line number Diff line number Diff line
@@ -66,7 +66,7 @@ buildPhase = ''
To save some work of writing Nix expressions, there is a script that imports all
the packages distributed by Quicklisp into `imported.nix`. This works by parsing
its `releases.txt` and `systems.txt` files, which are published every couple of
months on [quicklisp.org](http://beta.quicklisp.org/dist/quicklisp.txt).
months on [quicklisp.org](https://beta.quicklisp.org/dist/quicklisp.txt).

The import process is implemented in the `import` directory as Common Lisp
code in the `org.lispbuilds.nix` ASDF system. To run the script, one can
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ Nix problems and constraints:
- The `steam.sh` script in `$HOME` cannot be patched, as it is checked and rewritten by steam.
- The steam binary cannot be patched, it's also checked.

The current approach to deploy Steam in NixOS is composing a FHS-compatible chroot environment, as documented [here](http://sandervanderburg.blogspot.nl/2013/09/composing-fhs-compatible-chroot.html). This allows us to have binaries in the expected paths without disrupting the system, and to avoid patching them to work in a non FHS environment.
The current approach to deploy Steam in NixOS is composing a FHS-compatible chroot environment, as documented [here](https://sandervanderburg.blogspot.com/2013/09/composing-fhs-compatible-chroot.html). This allows us to have binaries in the expected paths without disrupting the system, and to avoid patching them to work in a non FHS environment.

## How to play {#sec-steam-play}

+1 −1
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ In Nixpkgs, we have multiple implementations of the BLAS/LAPACK numerical linear

    The Nixpkgs attribute is `openblas` for ILP64 (integer width = 64 bits) and `openblasCompat` for LP64 (integer width = 32 bits).  `openblasCompat` is the default.

-   [LAPACK reference](http://www.netlib.org/lapack/) (also provides BLAS and CBLAS)
-   [LAPACK reference](https://www.netlib.org/lapack/) (also provides BLAS and CBLAS)

    The Nixpkgs attribute is `lapack-reference`.

+5 −5
Original line number Diff line number Diff line
@@ -516,17 +516,17 @@ in mkLicense lset) ({

  generaluser = {
    fullName = "GeneralUser GS License v2.0";
    url = "http://www.schristiancollins.com/generaluser.php"; # license included in sources
    url = "https://www.schristiancollins.com/generaluser.php"; # license included in sources
  };

  gfl = {
    fullName = "GUST Font License";
    url = "http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt";
    url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-LICENSE.txt";
  };

  gfsl = {
    fullName = "GUST Font Source License";
    url = "http://www.gust.org.pl/fonts/licenses/GUST-FONT-SOURCE-LICENSE.txt";
    url = "https://www.gust.org.pl/projects/e-foundry/licenses/GUST-FONT-SOURCE-LICENSE.txt";
  };

  gpl1Only = {
@@ -613,7 +613,7 @@ in mkLicense lset) ({
  info-zip = {
    spdxId = "Info-ZIP";
    fullName = "Info-ZIP License";
    url = "http://www.info-zip.org/pub/infozip/license.html";
    url = "https://infozip.sourceforge.net/license.html";
  };

  inria-compcert = {
@@ -1182,7 +1182,7 @@ in mkLicense lset) ({

  xfig = {
    fullName = "xfig";
    url = "http://mcj.sourceforge.net/authors.html#xfig"; # https is broken
    url = "https://mcj.sourceforge.net/authors.html#xfig";
  };

  zlib = {
Loading