587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
22 lines
447 B
Nix
22 lines
447 B
Nix
{ 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";
|
|
mainProgram = "lsb_release";
|
|
license = [ licenses.mit ];
|
|
maintainers = with maintainers; [ primeos ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|