571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
52 lines
935 B
Nix
52 lines
935 B
Nix
{ 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";
|
|
mainProgram = "bioawk";
|
|
homepage = "https://github.com/lh3/bioawk";
|
|
license = licenses.hpnd;
|
|
maintainers = with maintainers; [ natsukium ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|