1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5}:
6
7stdenv.mkDerivation rec {
8 pname = "trf";
9 version = "4.09.1";
10
11 src = fetchFromGitHub {
12 owner = "Benson-Genomics-Lab";
13 repo = "trf";
14 rev = "v${version}";
15 sha256 = "sha256-73LypVqBdlRdDCblf9JNZQmS5Za8xpId4ha5GjTJHDo=";
16 };
17
18 meta = with lib; {
19 description = "Tandem Repeats Finder: a program to analyze DNA sequences";
20 homepage = "https://tandem.bu.edu/trf/trf.html";
21 license = licenses.agpl3Plus;
22 maintainers = with maintainers; [ natsukium ];
23 platforms = platforms.unix;
24 };
25}