mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
14 lines
277 B
Nix
14 lines
277 B
Nix
{ 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;
|
|
};
|
|
}
|