9 stdenv.mkDerivation (finalAttrs: {
10 pname = "mescc-tools-extra";
13 src = fetchFromGitHub {
15 repo = "mescc-tools-extra";
16 rev = "Release_${finalAttrs.version}";
17 hash = "sha256-LS9Eq1z+OsDF7Jq0TfF4u8jEJ5bjcLZNfKtnpIbtG20=";
20 # Don't use vendored M2libc
23 ln -s ${m2libc}/include/M2libc M2libc
26 enableParallelBuilding = true;
30 nativeCheckInputs = [ perl ];
32 installFlags = [ "PREFIX=$(out)" ];
35 description = "Collection of tools written for use in bootstrapping";
36 homepage = "https://github.com/oriansj/mescc-tools-extra";
37 license = licenses.gpl3Only;
38 maintainers = teams.minimal-bootstrap.members;
39 inherit (m2libc.meta) platforms;