···17, palemoon-bin
18}:
1920-stdenv.mkDerivation rec {
21 pname = "palemoon-bin";
22- version = "32.3.1";
2324 src = fetchzip {
25 urls = [
26- "https://rm-eu.palemoon.org/release/palemoon-${version}.linux-x86_64-gtk${if withGTK3 then "3" else "2"}.tar.xz"
27- "https://rm-us.palemoon.org/release/palemoon-${version}.linux-x86_64-gtk${if withGTK3 then "3" else "2"}.tar.xz"
28 ];
29 hash = if withGTK3 then
30- "sha256-1JYaxxkqgg/gLdZ+uGDB5BI0NKjHO4huk0b/M9QFuII="
31 else
32- "sha256-p/Lid6Uv3XTEg+43Gke5VLILhzENHoBP6XjGVHy7wCY=";
33 };
3435 preferLocalBuild = true;
···53 ];
5455 desktopItems = [(makeDesktopItem rec {
56- name = pname;
57 desktopName = "Pale Moon Web Browser";
58 comment = "Browse the World Wide Web";
59 keywords = [
···164 longDescription = ''
165 Pale Moon is an Open Source, Goanna-based web browser focusing on
166 efficiency and customization.
0167 Pale Moon offers you a browsing experience in a browser completely built
168 from its own, independently developed source that has been forked off from
169 Firefox/Mozilla code a number of years ago, with carefully selected
···186 platforms = [ "x86_64-linux" ];
187 hydraPlatforms = [];
188 };
189-}
···17, palemoon-bin
18}:
1920+stdenv.mkDerivation (finalAttrs: {
21 pname = "palemoon-bin";
22+ version = "32.4.0.1";
2324 src = fetchzip {
25 urls = [
26+ "https://rm-eu.palemoon.org/release/palemoon-${finalAttrs.version}.linux-x86_64-gtk${if withGTK3 then "3" else "2"}.tar.xz"
27+ "https://rm-us.palemoon.org/release/palemoon-${finalAttrs.version}.linux-x86_64-gtk${if withGTK3 then "3" else "2"}.tar.xz"
28 ];
29 hash = if withGTK3 then
30+ "sha256-kGt3pIgCjVeSD6UXRvj5w9opWrMx3q3B/Y0S55kKS08="
31 else
32+ "sha256-kNvUC/ir7TKjvKXYFoEDOPAY75CEgeixmEV1tuB/WIM=";
33 };
3435 preferLocalBuild = true;
···53 ];
5455 desktopItems = [(makeDesktopItem rec {
56+ name = "palemoon-bin";
57 desktopName = "Pale Moon Web Browser";
58 comment = "Browse the World Wide Web";
59 keywords = [
···164 longDescription = ''
165 Pale Moon is an Open Source, Goanna-based web browser focusing on
166 efficiency and customization.
167+168 Pale Moon offers you a browsing experience in a browser completely built
169 from its own, independently developed source that has been forked off from
170 Firefox/Mozilla code a number of years ago, with carefully selected
···187 platforms = [ "x86_64-linux" ];
188 hydraPlatforms = [];
189 };
190+})