about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/minimal-bootstrap/gnused/common.nix
blob: 658f05923ac3e98d14b4c4aa612e8cb7aac02b19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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;
  };
}