remarkable-toolchain: use which instead of patching with sed

This commit is contained in:
Ben Siraphob 2020-10-30 14:27:23 +07:00
parent 263ddd73cd
commit 12d1b76db8

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, libarchive, python3, file }: { stdenv, fetchurl, libarchive, python, file, which }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "remarkable-toolchain"; pname = "remarkable-toolchain";
@ -6,31 +6,30 @@ stdenv.mkDerivation rec {
src = fetchurl { src = fetchurl {
url = "https://remarkable.engineering/oecore-x86_64-cortexa9hf-neon-toolchain-zero-gravitas-${version}.sh"; url = "https://remarkable.engineering/oecore-x86_64-cortexa9hf-neon-toolchain-zero-gravitas-${version}.sh";
sha256 = "6299955721bcd9bef92a87ad3cfe4d31df8e2da95b0c4b2cdded4431aa6748b0"; sha256 = "1rk1r80m5d18sw6hrybj6f78s8pna0wrsa40ax6j8jzfwahgzmfb";
executable = true;
}; };
nativeBuildInputs = [ nativeBuildInputs = [
libarchive libarchive
python3 python
file file
which
]; ];
unpackCmd = "mkdir src; install $curSrc src/install-toolchain.sh"; dontUnpack = true;
dontBuild = true; dontBuild = true;
installPhase = '' installPhase = ''
patchShebangs install-toolchain.sh mkdir -p $out
sed -i -e '3,9d' install-toolchain.sh # breaks PATH ENVCLEANED=1 $src -y -d $out
sed -i 's|PYTHON=.*$|PYTHON=${python3}/bin/python|' install-toolchain.sh
./install-toolchain.sh -D -y -d $out
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A toolchain for cross-compiling to reMarkable tablets"; description = "A toolchain for cross-compiling to reMarkable tablets";
homepage = "https://remarkable.engineering/"; homepage = "https://remarkable.engineering/";
license = licenses.gpl2; license = licenses.gpl2;
maintainers = [ maintainers.nickhu ]; maintainers = with maintainers; [ nickhu siraben ];
platforms = platforms.x86_64; platforms = [ "x86_64-linux" ];
}; };
} }