depot/third_party/nixpkgs/pkgs/os-specific/linux/minimal-bootstrap/musl/common.nix

14 lines
277 B
Nix
Raw Normal View History

{ 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;
};
}