nixpkgs/pkgs/by-name/mo/mosdepth/package.nix
2023-12-06 10:53:03 +00:00

34 lines
789 B
Nix

{ lib, buildNimPackage, fetchFromGitHub, pcre, testers }:
buildNimPackage (finalAttrs: {
pname = "mosdepth";
version = "0.3.6";
requiredNimVersion = 1;
src = fetchFromGitHub {
owner = "brentp";
repo = "mosdepth";
rev = "v${finalAttrs.version}";
sha256 = "sha256-7N42S3xfQRkrBmoLf0DsbLMpVULAFpHm5JugDMDzAgU=";
};
lockFile = ./lock.json;
buildInputs = [ pcre ];
passthru.tests = {
version = testers.testVersion {
package = finalAttrs.finalPackage;
};
};
meta = with lib; {
description = "fast BAM/CRAM depth calculation for WGS, exome, or targeted sequencing";
license = licenses.mit;
homepage = "https://github.com/brentp/mosdepth";
maintainers = with maintainers; [ jbedo ];
platforms = platforms.linux;
};
})