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

Commits on Nov 2, 2019

  1. megahit: 1.1.4 -> 1.2.9

    fpletz committed Nov 2, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    e39773f View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    c097caf View commit details
  3. Verified

    This commit was signed with the committer’s verified signature.
    B4dM4n Fabian Möller
    Copy the full SHA
    6842238 View commit details
13 changes: 5 additions & 8 deletions pkgs/applications/science/biology/megahit/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
{ stdenv, fetchFromGitHub, zlib }:
{ stdenv, fetchFromGitHub, cmake, zlib }:

stdenv.mkDerivation rec {
pname = "megahit";
version = "1.1.4";
version = "1.2.9";

src = fetchFromGitHub {
owner = "voutcn";
repo = "megahit";
rev = "v${version}";
sha256 = "011k0776w76l03zmy70kfd3y9zjmdnspfbs9fcxmnl3bdwd36kcw";
sha256 = "1r5d9nkdmgjsbrpj43q9hy3s8jwsabaz3ji561v18hy47v58923c";
};

nativeBuildInputs = [ cmake ];
buildInputs = [ zlib ];

installPhase = ''
for bin in megahit_sdbg_build megahit megahit_asm_core megahit_toolkit; do
install -vD $bin $out/bin/$bin
done
'';
enableParallelBuilding = true;

meta = with stdenv.lib; {
description = "An ultra-fast single-node solution for large and complex metagenomics assembly via succinct de Bruijn graph";
5 changes: 4 additions & 1 deletion pkgs/development/libraries/audiofile/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, alsaLib, AudioUnit, CoreServices }:
{ stdenv, lib, fetchurl, fetchpatch, alsaLib, AudioUnit, CoreServices }:

let

@@ -25,6 +25,9 @@ stdenv.mkDerivation rec {
sha256 = "0rb927zknk9kmhprd8rdr4azql4gn2dp75a36iazx2xhkbqhvind";
};

# fix build with gcc9
NIX_CFLAGS_LINK = lib.optional (stdenv.system == "i686-linux") "-lgcc_s";

patches = [
./gcc-6.patch
./CVE-2015-7747.patch
3 changes: 3 additions & 0 deletions pkgs/development/libraries/aws-sdk-cpp/default.nix
Original file line number Diff line number Diff line change
@@ -42,6 +42,9 @@ stdenv.mkDerivation rec {
] ++ lib.optional (apis != ["*"])
"-DBUILD_ONLY=${lib.concatStringsSep ";" apis}";

# fix build with gcc9, can be removed after bumping to current version
NIX_CFLAGS_COMPILE = [ "-Wno-error" ];

preConfigure =
''
rm aws-cpp-sdk-core-tests/aws/auth/AWSCredentialsProviderTest.cpp