mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
lsb-release: wrap to ensure needed utilities are available
This commit is contained in:
parent
c42b878ed3
commit
78785a06f9
1 changed files with 9 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, perl, getopt }:
|
||||
{ stdenv, fetchurl, perl, coreutils, getopt, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.4";
|
||||
|
@ -16,7 +16,14 @@ stdenv.mkDerivation rec {
|
|||
|
||||
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 = {
|
||||
description = "Prints certain LSB (Linux Standard Base) and Distribution information";
|
||||
|
|
Loading…
Reference in a new issue