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