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: 25837378a22f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dbed8e977c54
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on May 24, 2019

  1. linbox: 1.6.1 -> 1.6.2

    timokau committed May 24, 2019
    Copy the full SHA
    1e4140c View commit details
  2. Copy the full SHA
    39ced10 View commit details

Commits on May 25, 2019

  1. Merge pull request #61535 from timokau/linbox-1.6.2

    linbox: 1.6.1 -> 1.6.2
    timokau authored May 25, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dbed8e9 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/linbox/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/linbox/default.nix
Original file line number Diff line number Diff line change
@@ -12,13 +12,14 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "linbox";
version = "1.6.1";
version = "1.6.2";


src = fetchFromGitHub {
owner = "linbox-team";
repo = "${pname}";
rev = "v${version}";
sha256 = "11mgj7pkppvzmhx5g6wfnzisk36z00gqzzq9p14hzh5dbdhk3693";
sha256 = "038br15hhc8dc1hq0pkv6vb1qx9hjr7hjv3w9fq9qwkd870h2v1q";
};

nativeBuildInputs = [
@@ -61,7 +62,6 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.lgpl21Plus;
maintainers = [stdenv.lib.maintainers.timokau];
platforms = stdenv.lib.platforms.unix;
broken = stdenv.isDarwin || stdenv.isAarch64; # https://trac.sagemath.org/ticket/26932#comment:21
homepage = http://linalg.org/;
};
}