summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/palemoon/default.nix
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@gmail.com>2018-02-17 23:25:21 -0300
committerAndersonTorres <torres.anderson.85@gmail.com>2018-02-17 23:28:39 -0300
commit1ea44d75b219a56681152ecb166bbaec85a00d5c (patch)
tree7be63165c86f528309e02c4b2c16151e34c1805a /pkgs/applications/networking/browsers/palemoon/default.nix
parent890c0b9654e78292b0596fab42446d5c2735a568 (diff)
downloadnixpkgs-1ea44d75b219a56681152ecb166bbaec85a00d5c.tar
nixpkgs-1ea44d75b219a56681152ecb166bbaec85a00d5c.tar.gz
nixpkgs-1ea44d75b219a56681152ecb166bbaec85a00d5c.tar.bz2
nixpkgs-1ea44d75b219a56681152ecb166bbaec85a00d5c.tar.lz
nixpkgs-1ea44d75b219a56681152ecb166bbaec85a00d5c.tar.xz
nixpkgs-1ea44d75b219a56681152ecb166bbaec85a00d5c.tar.zst
nixpkgs-1ea44d75b219a56681152ecb166bbaec85a00d5c.zip
palemoon: 27.6.2 -> 27.7.2
Also, adding myself to maintainers.
Diffstat (limited to 'pkgs/applications/networking/browsers/palemoon/default.nix')
-rw-r--r--pkgs/applications/networking/browsers/palemoon/default.nix18
1 files changed, 14 insertions, 4 deletions
diff --git a/pkgs/applications/networking/browsers/palemoon/default.nix b/pkgs/applications/networking/browsers/palemoon/default.nix
index 006aa88f363..cd4f9509788 100644
--- a/pkgs/applications/networking/browsers/palemoon/default.nix
+++ b/pkgs/applications/networking/browsers/palemoon/default.nix
@@ -10,14 +10,14 @@
 
 stdenv.mkDerivation rec {
   name = "palemoon-${version}";
-  version = "27.6.2";
+  version = "27.7.2";
 
   src = fetchFromGitHub {
     name   = "palemoon-src";
     owner  = "MoonchildProductions";
     repo   = "Pale-Moon";
     rev    = version + "_Release";
-    sha256 = "0ickxrwl36iyqj3v9qq6hnfl2y652f2ppwi949pfh4f6shm9x0ri";
+    sha256 = "19ki6gp6bhcvhjnclalviiyp93mqsgc22xjl0gm9x5y4sxdb5wlq";
   };
 
   desktopItem = makeDesktopItem {
@@ -101,10 +101,20 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A web browser";
+    longDescription = ''
+      Pale Moon is an Open Source, Goanna-based web browser focusing on
+      efficiency and customization.
+
+      Pale Moon offers you a browsing experience in a browser completely built
+      from its own, independently developed source that has been forked off from
+      Firefox/Mozilla code a number of years ago, with carefully selected
+      features and optimizations to improve the browser's stability and user
+      experience, while offering full customization and a growing collection of
+      extensions and themes to make the browser truly your own.
+    '';
     homepage    = https://www.palemoon.org/;
     license     = licenses.mpl20;
-    maintainers = with maintainers; [ rnhmjoj ];
+    maintainers = with maintainers; [ rnhmjoj AndersonTorres ];
     platforms   = platforms.linux;
   };
-
 }