Merge pull request #30103 from dtzWill/fix/lsb-release-PATH
lsb-release: wrap to ensure needed utilities are available
This commit is contained in:
commit
a41342ba58
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, perl, getopt }:
|
{ stdenv, fetchurl, perl, coreutils, getopt, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.4";
|
version = "1.4";
|
||||||
@ -16,7 +16,14 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
installFlags = [ "prefix=$(out)" ];
|
installFlags = [ "prefix=$(out)" ];
|
||||||
|
|
||||||
buildInputs = [ perl getopt ];
|
nativeBuildInputs = [ makeWrapper perl ];
|
||||||
|
|
||||||
|
buildInputs = [ coreutils getopt ];
|
||||||
|
|
||||||
|
# Ensure utilities used are available
|
||||||
|
preFixup = ''
|
||||||
|
wrapProgram $out/bin/lsb_release --prefix PATH : ${stdenv.lib.makeBinPath [ coreutils getopt ]}
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Prints certain LSB (Linux Standard Base) and Distribution information";
|
description = "Prints certain LSB (Linux Standard Base) and Distribution information";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user