3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/biology/mosdepth/default.nix

47 lines
1.1 KiB
Nix
Raw Normal View History

{lib, stdenv, fetchFromGitHub, nim, htslib, pcre}:
2018-07-06 04:58:00 +01:00
let
hts-nim = fetchFromGitHub {
owner = "brentp";
repo = "hts-nim";
2020-03-10 22:08:10 +00:00
rev = "v0.3.4";
sha256 = "0670phk1bq3l9j2zaa8i5wcpc5dyfrc0l2a6c21g0l2mmdczffa7";
2018-07-06 04:58:00 +01:00
};
docopt = fetchFromGitHub {
owner = "docopt";
repo = "docopt.nim";
2019-06-22 21:41:59 +01:00
rev = "v0.6.7";
sha256 = "1ga7ckg21fzwwvh26jp2phn2h3pvkn8g8sm13dxif33rp471bv37";
2018-07-06 04:58:00 +01:00
};
in stdenv.mkDerivation rec {
pname = "mosdepth";
2020-09-30 00:38:30 +01:00
version = "0.3.1";
2018-07-06 04:58:00 +01:00
src = fetchFromGitHub {
owner = "brentp";
repo = "mosdepth";
rev = "v${version}";
2020-09-30 00:38:30 +01:00
sha256 = "1kcrvamrafz1m0s7mlbhaay8jyg97l1w37p6syl36r2m1plmwxjd";
2018-07-06 04:58:00 +01:00
};
nativeBuildInputs = [ nim ];
buildInputs = [ htslib pcre ];
2018-07-06 04:58:00 +01:00
2018-10-31 21:03:27 +00:00
buildPhase = ''
HOME=$TMPDIR
nim -p:${hts-nim}/src -p:${docopt}/src c --nilseqs:on -d:release mosdepth.nim
'';
2018-07-06 04:58:00 +01:00
installPhase = "install -Dt $out/bin mosdepth";
meta = with lib; {
description = "fast BAM/CRAM depth calculation for WGS, exome, or targeted sequencing";
2018-07-06 04:58:00 +01:00
license = licenses.mit;
homepage = "https://github.com/brentp/mosdepth";
2018-07-06 04:58:00 +01:00
maintainers = with maintainers; [ jbedo ];
platforms = platforms.linux;
};
}