tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
remarkable-toolchain: 1.8-23.9.2019 -> 3.1.2
Ben Siraphob
4 years ago
1381ddc5
a5049e8c
+6
-6
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
misc
remarkable
remarkable-toolchain
default.nix
+6
-6
pkgs/development/tools/misc/remarkable/remarkable-toolchain/default.nix
···
1
1
-
{ lib, stdenv, fetchurl, libarchive, python, file, which }:
1
1
+
{ lib, stdenv, fetchurl, libarchive, python3, file, which }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "remarkable-toolchain";
5
5
-
version = "1.8-23.9.2019";
5
5
+
version = "3.1.2";
6
6
7
7
src = fetchurl {
8
8
-
url = "https://remarkable.engineering/oecore-x86_64-cortexa9hf-neon-toolchain-zero-gravitas-${version}.sh";
9
9
-
sha256 = "1rk1r80m5d18sw6hrybj6f78s8pna0wrsa40ax6j8jzfwahgzmfb";
8
8
+
url = "https://storage.googleapis.com/remarkable-codex-toolchain/codex-x86_64-cortexa9hf-neon-rm10x-toolchain-${version}.sh";
9
9
+
sha256 = "sha256-ocODUUx2pgmqxMk8J+D+OvqlSHBSay6YzcqnxC9n59w=";
10
10
executable = true;
11
11
};
12
12
13
13
nativeBuildInputs = [
14
14
libarchive
15
15
-
python
15
15
+
python3
16
16
file
17
17
which
18
18
];
···
28
28
meta = with lib; {
29
29
description = "A toolchain for cross-compiling to reMarkable tablets";
30
30
homepage = "https://remarkable.engineering/";
31
31
-
license = licenses.gpl2;
31
31
+
license = licenses.gpl2Plus;
32
32
maintainers = with maintainers; [ nickhu siraben ];
33
33
platforms = [ "x86_64-linux" ];
34
34
};