14 lines
267 B
Nix
14 lines
267 B
Nix
|
|
{ lib }:
|
||
|
|
|
||
|
|
{
|
||
|
|
pname = "musl";
|
||
|
|
|
||
|
|
meta = with lib; {
|
||
|
|
description = "Efficient, small, quality libc implementation";
|
||
|
|
homepage = "https://musl.libc.org";
|
||
|
|
license = licenses.mit;
|
||
|
|
teams = [ teams.minimal-bootstrap ];
|
||
|
|
platforms = platforms.unix;
|
||
|
|
};
|
||
|
|
}
|