2019-07-30 23:20:00 +01:00
|
|
|
{ substituteAll, lib
|
|
|
|
, coreutils, getopt
|
|
|
|
}:
|
2016-04-22 18:03:27 +01:00
|
|
|
|
2019-07-30 23:20:00 +01:00
|
|
|
substituteAll {
|
|
|
|
name = "lsb_release";
|
2016-04-22 18:03:27 +01:00
|
|
|
|
2019-07-30 23:20:00 +01:00
|
|
|
src = ./lsb_release.sh;
|
2017-10-04 23:35:45 +01:00
|
|
|
|
2019-07-30 23:20:00 +01:00
|
|
|
dir = "bin";
|
|
|
|
isExecutable = true;
|
2017-10-04 23:35:45 +01:00
|
|
|
|
2019-07-30 23:20:00 +01:00
|
|
|
inherit coreutils getopt;
|
2016-04-22 18:03:27 +01:00
|
|
|
|
2019-07-30 23:20:00 +01:00
|
|
|
meta = with lib; {
|
2016-04-22 18:03:27 +01:00
|
|
|
description = "Prints certain LSB (Linux Standard Base) and Distribution information";
|
2019-07-30 23:20:00 +01:00
|
|
|
license = [ licenses.mit ];
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
platforms = platforms.linux;
|
2016-04-22 18:03:27 +01:00
|
|
|
};
|
|
|
|
}
|