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

Commits on Jul 18, 2020

  1. sortmerna: 3.0.3 -> 4.2.0

    - Fixes build against rocksdb 6.10.2
    - Use dynamic rocksdb and zlib libraries
    - Build a dynamic binary
    danieldk committed Jul 18, 2020
    Copy the full SHA
    56c8413 View commit details

Commits on Jul 21, 2020

  1. Merge pull request #93429 from danieldk/sortmerna-4.2.0

    sortmerna: 3.0.3 -> 4.2.0
    danieldk authored Jul 21, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    622150e View commit details
Showing with 19 additions and 12 deletions.
  1. +19 −12 pkgs/applications/science/biology/sortmerna/default.nix
31 changes: 19 additions & 12 deletions pkgs/applications/science/biology/sortmerna/default.nix
Original file line number Diff line number Diff line change
@@ -2,32 +2,39 @@

stdenv.mkDerivation rec {
pname = "sortmerna";
version = "3.0.3";
version = "4.2.0";

src = fetchFromGitHub {
repo = pname;
owner = "biocore";
rev = "v${version}";
sha256 = "0zx5fbzyr8wdr0zwphp8hhcn1xz43s5lg2ag4py5sv0pv5l1jh76";
sha256 = "0r91viylzr069jm7kpcgb45kagvf8sqcj5zc1af4arl9sgfs1f3j";
};

patches = [
(fetchpatch {
name = "CMakeInstallPrefix.patch";
url = "https://github.com/biocore/sortmerna/commit/4d36d620a3207e26cf3f588d4ec39889ea21eb79.patch";
sha256 = "0hc3jwdr6ylbyigg52q8islqc0mb1k8rrjadvjfqaxnili099apd";
})
];

nativeBuildInputs = [ cmake rapidjson pkgconfig ];
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ zlib rocksdb rapidjson ];

cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DROCKSDB_HOME=${rocksdb}"
"-DPORTABLE=off"
"-DRAPIDJSON_HOME=${rapidjson}"
"-DROCKSDB_HOME=${rocksdb}"
"-DROCKSDB_STATIC=off"
"-DZLIB_STATIC=off"
];

postPatch = ''
# Fix formatting string error:
# https://github.com/biocore/sortmerna/issues/255
substituteInPlace src/sortmerna/indexdb.cpp \
--replace 'is_verbose, ss' 'is_verbose, "%s", ss'
# Fix missing pthread dependency for the main binary.
substituteInPlace src/sortmerna/CMakeLists.txt \
--replace "target_link_libraries(sortmerna" \
"target_link_libraries(sortmerna Threads::Threads"
'';

meta = with stdenv.lib; {
description = "Tools for filtering, mapping, and OTU-picking from shotgun genomics data";
license = licenses.lgpl3;