bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
13 lines
277 B
Nix
13 lines
277 B
Nix
{ lib }:
|
|
|
|
{
|
|
pname = "musl";
|
|
|
|
meta = with lib; {
|
|
description = "Efficient, small, quality libc implementation";
|
|
homepage = "https://musl.libc.org";
|
|
license = licenses.mit;
|
|
maintainers = teams.minimal-bootstrap.members;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|