Created
August 6, 2019 10:56
-
-
Save cleverca22/09344bfba5cc7476b27bea34688722a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stuff = pkgs.runCommand "stuff" { } '' | |
#!${pkgs.stdenv.shell} | |
mkdir -p $out/bin | |
mkdir -p $out/share/man/man1 | |
ln -s ${pkgs.binutils.out}/bin/readelf $out/bin | |
ln -s ${pkgs.binutils.out}/bin/strings $out/bin | |
ln -s ${pkgs.binutils.out}/share/man/man1/readelf.1.gz $out/share/man/man1/ | |
ln -s ${pkgs.binutils.out}/share/man/man1/strings.1.gz $out/share/man/man1/ | |
''; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment