Merge pull request #35090 from AndersonTorres/upload/palemoon

palemoon: 27.6.2 -> 27.7.2

authored by Michael Raskin and committed by GitHub d73aa60a 890c0b96

+14 -4
+14 -4
pkgs/applications/networking/browsers/palemoon/default.nix
··· 10 10 11 11 stdenv.mkDerivation rec { 12 12 name = "palemoon-${version}"; 13 - version = "27.6.2"; 13 + version = "27.7.2"; 14 14 15 15 src = fetchFromGitHub { 16 16 name = "palemoon-src"; 17 17 owner = "MoonchildProductions"; 18 18 repo = "Pale-Moon"; 19 19 rev = version + "_Release"; 20 - sha256 = "0ickxrwl36iyqj3v9qq6hnfl2y652f2ppwi949pfh4f6shm9x0ri"; 20 + sha256 = "19ki6gp6bhcvhjnclalviiyp93mqsgc22xjl0gm9x5y4sxdb5wlq"; 21 21 }; 22 22 23 23 desktopItem = makeDesktopItem { ··· 101 101 102 102 meta = with stdenv.lib; { 103 103 description = "A web browser"; 104 + longDescription = '' 105 + Pale Moon is an Open Source, Goanna-based web browser focusing on 106 + efficiency and customization. 107 + 108 + Pale Moon offers you a browsing experience in a browser completely built 109 + from its own, independently developed source that has been forked off from 110 + Firefox/Mozilla code a number of years ago, with carefully selected 111 + features and optimizations to improve the browser's stability and user 112 + experience, while offering full customization and a growing collection of 113 + extensions and themes to make the browser truly your own. 114 + ''; 104 115 homepage = https://www.palemoon.org/; 105 116 license = licenses.mpl20; 106 - maintainers = with maintainers; [ rnhmjoj ]; 117 + maintainers = with maintainers; [ rnhmjoj AndersonTorres ]; 107 118 platforms = platforms.linux; 108 119 }; 109 - 110 120 }