about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/minimal-bootstrap/musl/common.nix
blob: 52db5f94742511f0e5cb0541cb725bc6c6f60620 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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;
  };
}