python312Packages.yoda: 2.0.1 -> 2.0.2
[NixPkgs.git] / pkgs / by-name / bs / bsc / package.nix
blob4b0cea6f547227541ced08c7f94188267e4a3c1d
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   llvmPackages,
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "bsc";
10   version = "3.3.4";
12   src = fetchFromGitHub {
13     owner = "IlyaGrebnov";
14     repo = "libbsc";
15     rev = "refs/tags/v${finalAttrs.version}";
16     hash = "sha256-reGg5xvoZBbNFFYPPyT2P1LA7oSCUIm9NIDjXyvkP9Q=";
17   };
19   enableParallelBuilding = true;
21   buildInputs = lib.optional stdenv.hostPlatform.isDarwin llvmPackages.openmp;
23   postPatch = lib.optional (!stdenv.hostPlatform.isx86) ''
24     substituteInPlace makefile \
25       --replace-fail "-mavx2" ""
27     substituteInPlace makefile.cuda \
28       --replace-fail "-mavx2" ""
29   '';
31   makeFlags = [
32     "CC=$(CXX)"
33     "PREFIX=${placeholder "out"}"
34   ];
36   meta = {
37     description = "High performance block-sorting data compression library";
38     homepage = "http://libbsc.com/";
39     maintainers = with lib.maintainers; [ sigmanificient ];
40     license = lib.licenses.asl20;
41     platforms = lib.platforms.unix;
42     mainProgram = "bsc";
43   };