Jared Baur 2023-11-18 08:23:34 -08:00
parent c9df0f7035
commit 53bf0b2154
No known key found for this signature in database
2 changed files with 14 additions and 14 deletions

View File

@ -17,14 +17,14 @@ let
, withAda ? true
}:
stdenvNoCC.mkDerivation {
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "coreboot-toolchain-${arch}";
version = "4.21";
version = "4.22";
src = fetchgit {
url = "https://review.coreboot.org/coreboot";
rev = "c1386ef6128922f49f93de5690ccd130a26eecf2";
hash = "sha256-tFGyI170vbhRgJZDix69DfOD5nIY8T4chSP+qTt3kC8=";
rev = finalAttrs.version;
hash = "sha256-OCEBt3YYyfXpnskFojBn/JoWTkNJ4XAI58BG4pyscGc=";
fetchSubmodules = false;
leaveDotGit = true;
postFetch = ''
@ -66,7 +66,7 @@ let
maintainers = with maintainers; [ felixsinger ];
platforms = platforms.linux;
};
}
})
);
in

View File

@ -1,16 +1,16 @@
{ fetchurl }: [
{
name = "gmp-6.2.1.tar.xz";
name = "gmp-6.3.0.tar.xz";
archive = fetchurl {
sha256 = "1wml97fdmpcynsbw9yl77rj29qibfp652d0w3222zlfx5j8jjj7x";
url = "mirror://gnu/gmp/gmp-6.2.1.tar.xz";
sha256 = "1648ad1mr7c1r8lkkqshrv1jfjgfdb30plsadxhni7mq041bihm3";
url = "mirror://gnu/gmp/gmp-6.3.0.tar.xz";
};
}
{
name = "mpfr-4.2.0.tar.xz";
name = "mpfr-4.2.1.tar.xz";
archive = fetchurl {
sha256 = "14yr4sf4mys64nzbgnd997l6l4n8l9vsjnnvnb0lh4jh2ggpi8q6";
url = "mirror://gnu/mpfr/mpfr-4.2.0.tar.xz";
sha256 = "1cnb3y7y351qg6r7ynwsgaykm7l2a8zg2nlljs4rf9k778shfy17";
url = "mirror://gnu/mpfr/mpfr-4.2.1.tar.xz";
};
}
{
@ -28,10 +28,10 @@
};
}
{
name = "binutils-2.40.tar.xz";
name = "binutils-2.41.tar.xz";
archive = fetchurl {
sha256 = "1qfqr7gw9k5hhaj6sllmis109qxq5354l2nivrlz65vz5lklr2hg";
url = "mirror://gnu/binutils/binutils-2.40.tar.xz";
sha256 = "0l3l003dynq11ppr2h8p0cfc7zyky8ilfwg60sbfan9lwa4mg6mf";
url = "mirror://gnu/binutils/binutils-2.41.tar.xz";
};
}
{