Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
488 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
replaceVarsWith,
lib,
runtimeShell,
coreutils,
getopt,
}:
replaceVarsWith {
name = "lsb_release";
src = ./lsb_release.sh;
dir = "bin";
isExecutable = true;
replacements = {
inherit coreutils getopt runtimeShell;
};
meta = with lib; {
description = "Prints certain LSB (Linux Standard Base) and Distribution information";
mainProgram = "lsb_release";
license = [ licenses.mit ];
maintainers = [ ];
platforms = platforms.linux;
};
}