5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
12 lines
284 B
Nix
12 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;
|
|
};
|
|
}
|