Files

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

13 lines
274 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{ lib }:
{
meta = with lib; {
description = "GNU sed, a batch stream editor";
homepage = "https://www.gnu.org/software/sed";
license = licenses.gpl3Plus;
teams = [ teams.minimal-bootstrap ];
mainProgram = "sed";
platforms = platforms.unix;
};
}