summary refs log tree commit diff
path: root/pkgs/os-specific/linux/lsb-release/default.nix
blob: 7ab10bfac124f7a05f4573594ee181ad0dc31df5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ substituteAll, lib
, coreutils, getopt
}:

substituteAll {
  name = "lsb_release";

  src = ./lsb_release.sh;

  dir = "bin";
  isExecutable = true;

  inherit coreutils getopt;

  meta = with lib; {
    description = "Prints certain LSB (Linux Standard Base) and Distribution information";
    license = [ licenses.mit ];
    maintainers = with maintainers; [ primeos ];
    platforms = platforms.linux;
  };
}