depot/third_party/nixpkgs/pkgs/os-specific/linux/lsb-release/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

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;
};
}