mescc-tools: replace fetchFromSavannah with mirror; 1.5.1 → 1.5.2

This commit is contained in:
Jasi
2025-08-22 19:14:53 -04:00
parent 65ca3fb680
commit 264b8fee01
+7 -7
View File
@@ -1,25 +1,25 @@
{
lib,
stdenv,
fetchFromSavannah,
fetchurl,
m2libc,
which,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "mescc-tools";
version = "1.5.1";
version = "1.5.2";
src = fetchFromSavannah {
repo = "mescc-tools";
rev = "Release_${finalAttrs.version}";
hash = "sha256-jFDrmzsjKEQKOKlsch1ceWtzUhoJAJVyHjXGVhjE9/U=";
src = fetchurl {
url = "mirror://savannah/${finalAttrs.pname}/${finalAttrs.pname}-${finalAttrs.version}.tar.gz";
hash = "sha256-k2wYbLNasuLRq03BG/DXJySNabKOv9sakgst1V8wU8k=";
};
# Don't use vendored M2libc
postPatch = ''
rmdir M2libc
rm -r M2libc
ln -s ${m2libc}/include/M2libc M2libc
patchShebangs --build Kaem/test.sh
'';
enableParallelBuilding = true;