Merge pull request #152976 from elohmeier/btop-rm-gcc-ref

btop: remove reference to gcc
main
markuskowa 3 years ago committed by GitHub
commit 118682d2f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/tools/system/btop/default.nix

@ -3,6 +3,7 @@
, fetchFromGitHub
, runCommand
, darwin
, removeReferencesTo
}:
stdenv.mkDerivation rec {
@ -38,6 +39,10 @@ stdenv.mkDerivation rec {
installFlags = [ "PREFIX=$(out)" ];
postInstall = ''
${removeReferencesTo}/bin/remove-references-to -t ${stdenv.cc.cc} $(readlink -f $out/bin/btop)
'';
meta = with lib; {
description = "A monitor of resources";
homepage = "https://github.com/aristocratos/btop";

Loading…
Cancel
Save