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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
280 B
Nix
Raw Normal View History

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