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