1{ substituteAll, lib
2, coreutils, getopt
3}:
4
5substituteAll {
6 name = "lsb_release";
7
8 src = ./lsb_release.sh;
9
10 dir = "bin";
11 isExecutable = true;
12
13 inherit coreutils getopt;
14
15 meta = with lib; {
16 description = "Prints certain LSB (Linux Standard Base) and Distribution information";
17 license = [ licenses.mit ];
18 maintainers = with maintainers; [ primeos ];
19 platforms = platforms.linux;
20 };
21}