tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
vc{_0_7,}: disable dynamic architecture detection
Nikolay Amiantov
9 years ago
26a84169
8b085a9c
+12
-2
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
vc
0.7.nix
default.nix
+6
-1
pkgs/development/libraries/vc/0.7.nix
···
15
15
16
16
enableParallelBuilding = true;
17
17
18
18
+
postPatch = ''
19
19
+
sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake
20
20
+
sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake
21
21
+
'';
22
22
+
18
23
meta = with stdenv.lib; {
19
24
description = "Library for multiprecision complex arithmetic with exact rounding";
20
20
-
homepage = https://github.com/VcDevel/Vc;
25
25
+
homepage = "https://github.com/VcDevel/Vc";
21
26
license = licenses.bsd3;
22
27
platforms = platforms.all;
23
28
maintainers = with maintainers; [ abbradar ];
+6
-1
pkgs/development/libraries/vc/default.nix
···
15
15
16
16
enableParallelBuilding = true;
17
17
18
18
+
postPatch = ''
19
19
+
sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake
20
20
+
sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake
21
21
+
'';
22
22
+
18
23
meta = with stdenv.lib; {
19
24
description = "Library for multiprecision complex arithmetic with exact rounding";
20
20
-
homepage = https://github.com/VcDevel/Vc;
25
25
+
homepage = "https://github.com/VcDevel/Vc";
21
26
license = licenses.bsd3;
22
27
platforms = [ "x86_64-linux" "x86_64-darwin" ];
23
28
maintainers = with maintainers; [ abbradar ];