mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 00:53:57 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
41 lines
843 B
Nix
41 lines
843 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, gtest
|
|
, which
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "genmap";
|
|
version = "1.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cpockrandt";
|
|
repo = "genmap";
|
|
rev = "genmap-v${version}";
|
|
fetchSubmodules = true;
|
|
sha256 = "sha256-7sIKBRMNzyCrZ/c2nXkknb6a5YsXe6DRE2IFhp6AviY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
doCheck = true;
|
|
patches = [ ./gtest.patch ];
|
|
nativeCheckInputs = [ gtest which ];
|
|
preCheck = "make genmap_algo_test";
|
|
|
|
# disable benchmarks
|
|
preConfigure = ''
|
|
echo > benchmarks/CMakeLists.txt
|
|
'';
|
|
|
|
meta = {
|
|
description = "Ultra-fast computation of genome mappability";
|
|
license = lib.licenses.bsd3;
|
|
homepage = "https://github.com/cpockrandt/genmap";
|
|
maintainers = with lib.maintainers; [ jbedo ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|