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