mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 21:04:30 +00:00
13 lines
284 B
Nix
13 lines
284 B
Nix
{ lib }:
|
|
|
|
{
|
|
meta = with lib; {
|
|
description = "GNU sed, a batch stream editor";
|
|
homepage = "https://www.gnu.org/software/sed";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = teams.minimal-bootstrap.members;
|
|
mainProgram = "sed";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|