Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ad42e5f6e5da
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0ae147c50a61
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jun 23, 2017

  1. libatomic_ops: Provide alternate URL

    www.ivmaisoft.com is currently down.
    aij committed Jun 23, 2017
    Copy the full SHA
    a9c9040 View commit details

Commits on Jun 25, 2017

  1. Merge pull request #26771 from aij/fix/libatomic_ops

    libatomic_ops: Provide alternate URL
    Mic92 authored Jun 25, 2017
    Copy the full SHA
    0ae147c View commit details
Showing with 4 additions and 1 deletion.
  1. +4 −1 pkgs/development/libraries/libatomic_ops/default.nix
5 changes: 4 additions & 1 deletion pkgs/development/libraries/libatomic_ops/default.nix
Original file line number Diff line number Diff line change
@@ -5,7 +5,10 @@ stdenv.mkDerivation rec {
version = "7.6.0";

src = fetchurl {
url = "http://www.ivmaisoft.com/_bin/atomic_ops/libatomic_ops-${version}.tar.gz";
urls = [
"http://www.ivmaisoft.com/_bin/atomic_ops/libatomic_ops-${version}.tar.gz"
"https://github.com/ivmai/libatomic_ops/releases/download/v${version}/libatomic_ops-${version}.tar.gz"
];
sha256 ="03ylfr29g9zc0r6b6axz3i68alj5qmxgzknxwam3jlx0sz8hcb4f";
};