Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 890c0b9654e7
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d73aa60a658a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Feb 18, 2018

  1. palemoon: 27.6.2 -> 27.7.2

    Also, adding myself to maintainers.
    AndersonTorres committed Feb 18, 2018
    Copy the full SHA
    1ea44d7 View commit details
  2. Merge pull request #35090 from AndersonTorres/upload/palemoon

    palemoon: 27.6.2 -> 27.7.2
    7c6f434c authored Feb 18, 2018
    Copy the full SHA
    d73aa60 View commit details
Showing with 14 additions and 4 deletions.
  1. +14 −4 pkgs/applications/networking/browsers/palemoon/default.nix
18 changes: 14 additions & 4 deletions pkgs/applications/networking/browsers/palemoon/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};

}