1 { lib, stdenv, fetchFromGitHub, autoreconfHook, nasm }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-AAuSdDQfDW4QFRu0jHwCZ+ZCSjoVqlQiSW1OOFye1Rs=";
14 nativeBuildInputs = [ nasm autoreconfHook ];
21 description = "A collection of optimised low-level functions targeting storage applications";
22 license = licenses.bsd3;
23 homepage = "https://github.com/intel/isa-l";
24 maintainers = with maintainers; [ jbedo ];
25 platforms = platforms.all;
26 broken = stdenv.isDarwin && stdenv.isAarch64; # does not build on M1 mac (asm/hwcap.h file not found) maybe needs gcc not clang?