mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge pull request #105409 from jbedo/bwa
bwa: expand supported platforms
This commit is contained in:
commit
cc10a8229f
@ -11,6 +11,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
# Avoid hardcoding gcc to allow environments with a different
|
||||
# C compiler to build
|
||||
preConfigure = ''
|
||||
sed -i '/^CC/d' Makefile
|
||||
'';
|
||||
|
||||
# it's unclear which headers are intended to be part of the public interface
|
||||
# so we may find ourselves having to add more here over time
|
||||
installPhase = ''
|
||||
@ -27,6 +33,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.gpl3;
|
||||
homepage = "http://bio-bwa.sourceforge.net/";
|
||||
maintainers = with maintainers; [ luispedro ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
platforms = platforms.x86_64;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user