nixpkgs/pkgs/development/libraries/isa-l/default.nix

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

30 lines
827 B
Nix
Raw Normal View History

2021-10-19 13:04:41 +03:00
{ lib, stdenv, fetchFromGitHub, autoreconfHook, nasm }:
stdenv.mkDerivation rec {
pname = "isa-l";
2024-01-21 18:27:19 +03:00
version = "2.31.0";
2021-10-19 13:04:41 +03:00
src = fetchFromGitHub {
owner = "intel";
repo = "isa-l";
rev = "v${version}";
2024-01-21 18:27:19 +03:00
sha256 = "sha256-xBBtpjtWyba0DogdLobtuWmiiAHTXMK4oRnjYuTUCNk=";
2021-10-19 13:04:41 +03:00
};
nativeBuildInputs = [ nasm autoreconfHook ];
preConfigure = ''
export AS=nasm
'';
meta = with lib; {
description = "A collection of optimised low-level functions targeting storage applications";
mainProgram = "igzip";
2021-10-19 13:04:41 +03:00
license = licenses.bsd3;
homepage = "https://github.com/intel/isa-l";
maintainers = with maintainers; [ jbedo ];
platforms = platforms.all;
broken = stdenv.isDarwin && stdenv.isAarch64; # does not build on M1 mac (asm/hwcap.h file not found) maybe needs gcc not clang?
2021-10-19 13:04:41 +03:00
};
}