nixpkgs/pkgs/applications/science/biology/plink-ng/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1.0 KiB
Nix
Raw Normal View History

2021-01-15 13:21:58 +00:00
{ lib, stdenv, fetchFromGitHub, zlib, blas, lapack, darwin}:
2016-11-13 23:49:40 +00:00
stdenv.mkDerivation rec {
pname = "plink-ng";
2016-11-13 23:49:40 +00:00
version = "1.90b3";
src = fetchFromGitHub {
owner = "chrchang";
repo = "plink-ng";
rev = "v${version}";
sha256 = "1zhffjbwpd50dxywccbnv1rxy9njwz73l4awc5j7i28rgj3davcq";
};
buildInputs = [ zlib ] ++ (if stdenv.isDarwin then [ darwin.apple_sdk.frameworks.Accelerate ] else [ blas lapack ]) ;
2016-11-13 23:49:40 +00:00
preBuild = ''
2016-11-13 23:49:40 +00:00
sed -i 's|zlib-1.2.8/zlib.h|zlib.h|g' *.c *.h
2023-02-06 20:49:02 +00:00
${lib.optionalString stdenv.cc.isClang "sed -i 's|g++|clang++|g' Makefile.std"}
makeFlagsArray+=(
ZLIB=-lz
BLASFLAGS="-lblas -lcblas -llapack"
);
2016-11-13 23:49:40 +00:00
'';
makefile = "Makefile.std";
2016-11-13 23:49:40 +00:00
installPhase = ''
mkdir -p $out/bin
cp plink $out/bin
'';
meta = {
broken = (stdenv.isLinux && stdenv.isAarch64);
2016-11-13 23:49:40 +00:00
description = "A comprehensive update to the PLINK association analysis toolset";
homepage = "https://www.cog-genomics.org/plink2";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
2016-11-13 23:49:40 +00:00
};
}