From 724e12083559bae0cc0af622f94fc6c1d2a9eeb3 Mon Sep 17 00:00:00 2001 From: Mauricio Collares Date: Sun, 30 Mar 2025 18:06:58 -0300 Subject: [PATCH] singular: 4.4.0p6 -> 4.4.1 --- pkgs/by-name/si/singular/package.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/si/singular/package.nix b/pkgs/by-name/si/singular/package.nix index 21c9a9e67955..4f1293b2f05c 100644 --- a/pkgs/by-name/si/singular/package.nix +++ b/pkgs/by-name/si/singular/package.nix @@ -1,7 +1,6 @@ { stdenv, fetchFromGitHub, - fetchpatch, gmp, bison, perl, @@ -31,7 +30,7 @@ stdenv.mkDerivation rec { pname = "singular"; - version = "4.4.0p6"; + version = "4.4.1"; # since the tarball does not contain tests, we fetch from GitHub. src = fetchFromGitHub { @@ -41,7 +40,7 @@ stdenv.mkDerivation rec { # if a release is tagged (which sometimes does not happen), it will # be in the format below. rev = "Release-${lib.replaceStrings [ "." ] [ "-" ] version}"; - hash = "sha256-QxMMMnXaWe+0ogA6+3eOtdROb0RolSveya6DIx97/YY="; + hash = "sha256-vrRIirWQLbbe1l07AqqHK/StWo0egKuivdKT5R8Rx58="; # the repository's .gitattributes file contains the lines "/Tst/ # export-ignore" and "/doc/ export-ignore" so some directories are @@ -49,15 +48,6 @@ stdenv.mkDerivation rec { forceFetchGit = true; }; - patches = [ - (fetchpatch { - # removes dead code with invalid member reference in gfanlib - name = "clang-19.patch"; - url = "https://github.com/Singular/Singular/commit/d3f73432d73ac0dd041af83cb35301498e9b57d9.patch"; - hash = "sha256-1KOk+yrTvHWY4aSK9QcByHIwKwe71QIYTMx8zo7XNos="; - }) - ]; - configureFlags = [ "--enable-gfanlib"