nixpkgs/pkgs/development/libraries/vc/0.7.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

31 lines
781 B
Nix

{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "Vc-${version}";
version = "0.7.5";
src = fetchFromGitHub {
owner = "VcDevel";
repo = "Vc";
rev = version;
sha256 = "190s4r2n3jsivl4j2m288j3rqmgjj6gl308hi9mzwyhcfn17q8br";
};
nativeBuildInputs = [ cmake ];
enableParallelBuilding = true;
postPatch = ''
sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake
sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake
'';
meta = with stdenv.lib; {
description = "Library for multiprecision complex arithmetic with exact rounding";
homepage = https://github.com/VcDevel/Vc;
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ abbradar ];
};
}