bsc: migrate to by-name
This commit is contained in:
parent
9781a9bc61
commit
4f38c82774
@ -1,4 +1,9 @@
|
||||
{ lib, stdenv, fetchFromGitHub, openmp }:
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
llvmPackages,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "bsc";
|
||||
@ -13,7 +18,7 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = lib.optional stdenv.isDarwin openmp;
|
||||
buildInputs = lib.optional stdenv.isDarwin llvmPackages.openmp;
|
||||
|
||||
makeFlags = [
|
||||
"CC=$(CXX)"
|
@ -6437,10 +6437,6 @@ with pkgs;
|
||||
|
||||
boltbrowser = callPackage ../tools/misc/boltbrowser { };
|
||||
|
||||
bsc = callPackage ../tools/compression/bsc {
|
||||
inherit (llvmPackages) openmp;
|
||||
};
|
||||
|
||||
bzip2 = callPackage ../tools/compression/bzip2 { };
|
||||
|
||||
bzip2_1_1 = callPackage ../tools/compression/bzip2/1_1.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user