1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-19 12:11:28 +00:00

cgal_4: 4.14.2 → 4.14.3

This commit is contained in:
Vincent Laporte 2023-12-18 07:30:05 +01:00 committed by Bjørn Forsman
parent 1791eeb7bd
commit b9704019c9

View file

@ -1,14 +1,12 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, boost, gmp, mpfr }:
{ lib, stdenv, fetchurl, fetchpatch, cmake, boost, gmp, mpfr }:
stdenv.mkDerivation rec {
version = "4.14.2";
version = "4.14.3";
pname = "cgal";
src = fetchFromGitHub {
owner = "CGAL";
repo = "releases";
rev = "CGAL-${version}";
sha256 = "1p1xyws2s9h2c8hlkz1af4ix48qma160av24by6lcm8al1g44pca";
src = fetchurl {
url = "https://github.com/CGAL/cgal/releases/download/releases%2FCGAL-${version}/CGAL-${version}.tar.xz";
hash = "sha256-W6/nq+hDW+yhehCCBi02M2jsHj8NZYG7DaiwEPs4n+Q=";
};
patches = [