gnu-config: use install(1) to make buildCommand simpler

This commit is contained in:
sternenseemann
2023-08-06 20:22:23 +02:00
parent 1f4b42aa79
commit 9e34d8ec27
@@ -24,11 +24,8 @@ in stdenv.mkDerivation {
version = "2023-01-21";
buildCommand = ''
mkdir -p $out
cp ${configGuess} $out/config.guess
cp ${configSub} $out/config.sub
chmod +x $out/config.*
install -Dm755 ${configGuess} $out/config.guess
install -Dm755 ${configSub} $out/config.sub
'';
meta = with lib; {