summary refs log tree commit diff
path: root/pkgs/applications/science/biology/prodigal/default.nix
blob: 653f4390488e2235fa4032c1380f95c936a4f62e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "prodigal";
  version = "2.6.3";

  src = fetchFromGitHub {
    repo = "Prodigal";
    owner = "hyattpd";
    rev = "v${version}";
    sha256 = "1fs1hqk83qjbjhrvhw6ni75zakx5ki1ayy3v6wwkn3xvahc9hi5s";
  };

  makeFlags = [
    "CC=cc"
    "INSTALLDIR=$(out)/bin"
  ];
  
  meta = with stdenv.lib; {
    description = "Fast, reliable protein-coding gene prediction for prokaryotic genomes";
    homepage = https://github.com/hyattpd/Prodigal;
    license = licenses.gpl3;
    platforms = platforms.all;
    maintainers = with maintainers; [ luispedro ];
  };
}