Merge pull request #231925 from hall/koreader-aarch64
koreader: add support for aarch64-linux
This commit is contained in:
commit
d39fb92eb2
1 changed files with 7 additions and 4 deletions
|
@ -16,9 +16,12 @@ stdenv.mkDerivation rec {
|
||||||
pname = "koreader";
|
pname = "koreader";
|
||||||
version = "2023.04";
|
version = "2023.04";
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url =
|
src = if stdenv.isAarch64 then fetchurl {
|
||||||
"https://github.com/koreader/koreader/releases/download/v${version}/koreader-${version}-amd64.deb";
|
url = "https://github.com/koreader/koreader/releases/download/v${version}/koreader-${version}-arm64.deb";
|
||||||
|
sha256 = "sha256-uuspjno0750hQMIB5HEhbV63wCna2izKOHEGIg/X0bU=";
|
||||||
|
} else fetchurl {
|
||||||
|
url = "https://github.com/koreader/koreader/releases/download/v${version}/koreader-${version}-amd64.deb";
|
||||||
sha256 = "sha256-tRUeRB1+UcWT49dchN0YDvd0L5n1YRdtMSFc8yy6m5o=";
|
sha256 = "sha256-tRUeRB1+UcWT49dchN0YDvd0L5n1YRdtMSFc8yy6m5o=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -63,7 +66,7 @@ stdenv.mkDerivation rec {
|
||||||
description =
|
description =
|
||||||
"An ebook reader application supporting PDF, DjVu, EPUB, FB2 and many more formats, running on Cervantes, Kindle, Kobo, PocketBook and Android devices";
|
"An ebook reader application supporting PDF, DjVu, EPUB, FB2 and many more formats, running on Cervantes, Kindle, Kobo, PocketBook and Android devices";
|
||||||
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||||
platforms = intersectLists platforms.x86_64 platforms.linux;
|
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
||||||
license = licenses.agpl3Only;
|
license = licenses.agpl3Only;
|
||||||
maintainers = with maintainers; [ contrun neonfuz];
|
maintainers = with maintainers; [ contrun neonfuz];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue