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: 7c2babf84c41
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2e18ba6c5af5
Choose a head ref
  • 9 commits
  • 12 files changed
  • 2 contributors

Commits on Nov 5, 2018

  1. atlas: remove

    atlas is broken and can apparently be removed.
    
    Fixes #49594
    matthewbauer committed Nov 5, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    95373d3 View commit details
  2. 1

    Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    6ba2b84 View commit details

Commits on Nov 7, 2018

  1. shogun: use openblas

    shogun needs the cblas.h header file to be available. It used to get
    it from liblapack, but that is not available anymore. Instead we can
    use openblasCompat to get it.
    matthewbauer committed Nov 7, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    349f3df View commit details
  2. aliases: remove liblapackWithAtlas

    This doesn’t make any sense to keep - we don’t have a liblapack with
    atlas anymore.
    matthewbauer committed Nov 7, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    f2c49bd View commit details

Commits on Nov 8, 2018

  1. shogun: remove liblapack

    not needed anymore
    matthewbauer committed Nov 8, 2018

    Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    3dcb8c1 View commit details

Commits on Nov 11, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    06f3676 View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    6533d75 View commit details
  3. Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    45a4adb View commit details

Commits on Nov 14, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    2e18ba6 View commit details
8 changes: 4 additions & 4 deletions pkgs/applications/science/machine-learning/shogun/default.nix
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@
# data, compression
, bzip2, curl, hdf5, json_c, lzma, lzo, protobuf, snappy
# maths
, blas, eigen, nlopt, lp_solve, colpack
, openblasCompat, eigen, nlopt, lp_solve, colpack
# libraries
, libarchive, liblapack, libxml2
, libarchive, libxml2
# extra support
, pythonSupport ? true, pythonPackages ? null
, opencvSupport ? false, opencv ? null
@@ -41,8 +41,8 @@ stdenv.mkDerivation rec {
CCACHE_DIR=".ccache";

buildInputs = with lib; [
blas bzip2 ccache cmake colpack curl ctags eigen hdf5 json_c lp_solve lzma lzo
protobuf nlopt snappy swig (libarchive.dev) liblapack libxml2
openblasCompat bzip2 ccache cmake colpack curl ctags eigen hdf5 json_c lp_solve lzma lzo
protobuf nlopt snappy swig (libarchive.dev) libxml2
]
++ optionals (pythonSupport) (with pythonPackages; [ python ply numpy ])
++ optional (opencvSupport) opencv;
1 change: 1 addition & 0 deletions pkgs/applications/science/math/colpack/default.nix
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
vertex coloring and derivative computation";
homepage = "http://cscapes.cs.purdue.edu/coloringpage/software.htm#functionalities";
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ edwtjo ];
};

4 changes: 2 additions & 2 deletions pkgs/applications/science/math/giac/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, texlive, bison, flex, liblapackWithoutAtlas
{ stdenv, fetchurl, fetchpatch, texlive, bison, flex, liblapack
, gmp, mpfr, pari, ntl, gsl, blas, mpfi
, readline, gettext, libpng, libao, gfortran, perl
, enableGUI ? false, libGLU_combined ? null, xorg ? null, fltk ? null
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
# gfortran.cc default output contains static libraries compiled without -fPIC
# we want libgfortran.so.3 instead
(stdenv.lib.getLib gfortran.cc)
liblapackWithoutAtlas
liblapack
] ++ stdenv.lib.optionals enableGUI [
libGLU_combined fltk xorg.libX11
];
4 changes: 2 additions & 2 deletions pkgs/applications/science/physics/xfitter/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, apfel, apfelgrid, applgrid, blas, gfortran, lhapdf, liblapackWithoutAtlas, libyaml, lynx, mela, root5, qcdnum, which }:
{ stdenv, fetchurl, apfel, apfelgrid, applgrid, blas, gfortran, lhapdf, liblapack, libyaml, lynx, mela, root5, qcdnum, which }:

stdenv.mkDerivation rec {
name = "xfitter-${version}";
@@ -34,7 +34,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ gfortran which ];
buildInputs =
[ apfel apfelgrid applgrid blas lhapdf liblapackWithoutAtlas mela root5 qcdnum ]
[ apfel apfelgrid applgrid blas lhapdf liblapack mela root5 qcdnum ]
# pdf2yaml requires fmemopen and open_memstream which are not readily available on Darwin
++ stdenv.lib.optional (!stdenv.isDarwin) libyaml
;
126 changes: 0 additions & 126 deletions pkgs/development/libraries/science/math/atlas/default.nix

This file was deleted.

This file was deleted.

Loading