remarkable-toolchain: 1.8-23.9.2019 -> 3.1.2

+6 -6
+6 -6
pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
··· 1 - { lib, stdenv, fetchurl, libarchive, python, file, which }: 2 3 stdenv.mkDerivation rec { 4 pname = "remarkable-toolchain"; 5 - version = "1.8-23.9.2019"; 6 7 src = fetchurl { 8 - url = "https://remarkable.engineering/oecore-x86_64-cortexa9hf-neon-toolchain-zero-gravitas-${version}.sh"; 9 - sha256 = "1rk1r80m5d18sw6hrybj6f78s8pna0wrsa40ax6j8jzfwahgzmfb"; 10 executable = true; 11 }; 12 13 nativeBuildInputs = [ 14 libarchive 15 - python 16 file 17 which 18 ]; ··· 28 meta = with lib; { 29 description = "A toolchain for cross-compiling to reMarkable tablets"; 30 homepage = "https://remarkable.engineering/"; 31 - license = licenses.gpl2; 32 maintainers = with maintainers; [ nickhu siraben ]; 33 platforms = [ "x86_64-linux" ]; 34 };
··· 1 + { lib, stdenv, fetchurl, libarchive, python3, file, which }: 2 3 stdenv.mkDerivation rec { 4 pname = "remarkable-toolchain"; 5 + version = "3.1.2"; 6 7 src = fetchurl { 8 + url = "https://storage.googleapis.com/remarkable-codex-toolchain/codex-x86_64-cortexa9hf-neon-rm10x-toolchain-${version}.sh"; 9 + sha256 = "sha256-ocODUUx2pgmqxMk8J+D+OvqlSHBSay6YzcqnxC9n59w="; 10 executable = true; 11 }; 12 13 nativeBuildInputs = [ 14 libarchive 15 + python3 16 file 17 which 18 ]; ··· 28 meta = with lib; { 29 description = "A toolchain for cross-compiling to reMarkable tablets"; 30 homepage = "https://remarkable.engineering/"; 31 + license = licenses.gpl2Plus; 32 maintainers = with maintainers; [ nickhu siraben ]; 33 platforms = [ "x86_64-linux" ]; 34 };