Unverified Commit 3930ea16 authored by Justin Bedő's avatar Justin Bedő Committed by GitHub
Browse files

rPackages.alcyon: fix build (#353593)

parents 79e25966 4f8bbed6
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -340,6 +340,7 @@ let
    animation = [ pkgs.which ];
    Apollonius = with pkgs; [ pkg-config gmp.dev mpfr.dev ];
    arrow = with pkgs; [ pkg-config cmake ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ intltool ];
    alcyon = with pkgs; [ cmake which ];
    audio = [ pkgs.portaudio ];
    BayesSAE = [ pkgs.gsl ];
    BayesVarSel = [ pkgs.gsl ];
@@ -1084,6 +1085,12 @@ let
        '';
    });

    alcyon = old.alcyon.overrideAttrs (attrs: {
      configureFlags = [
        "--enable-force-openmp"
      ];
    });

    sf = old.sf.overrideAttrs (attrs: {
      configureFlags = [
        "--with-proj-lib=${pkgs.lib.getLib pkgs.proj}/lib"