summary refs log tree commit diff
path: root/pkgs/applications/science/biology/bioawk/default.nix
blob: cfbb1a551facb1d9a3bc24d1179969e669d72682 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ lib
, stdenv
, fetchFromGitHub
, installShellFiles
, bison
, zlib
}:

stdenv.mkDerivation {
  pname = "bioawk";
  version = "unstable-2017-09-11";

  src = fetchFromGitHub {
    owner = "lh3";
    repo = "bioawk";
    rev = "fd40150b7c557da45e781a999d372abbc634cc21";
    hash = "sha256-WWgz96DPP83J45isWkMbgEvOlibq6WefK//ImV6+AU0=";
  };

  nativeBuildInputs = [
    bison
    installShellFiles
  ];

  buildInputs = [
    zlib
  ];

  buildFlags = [
    "CC=${stdenv.cc.targetPrefix}cc"
  ];

  installPhase = ''
    runHook preInstall

    install -Dm755 bioawk -t $out/bin
    mv awk.1 bioawk.1
    installManPage bioawk.1

    runHook postInstall
  '';

  meta = with lib; {
    description = "BWK awk modified for biological data";
    homepage = "https://github.com/lh3/bioawk";
    license = licenses.hpnd;
    maintainers = with maintainers; [ natsukium ];
    platforms = platforms.unix;
  };
}