Merge pull request #66669 from OPNA2608/update-palemoon

palemoon: 28.6.0.1 -> 28.7.0, drop hardeningDisable
This commit is contained in:
Aaron Andersen 2019-09-05 21:03:48 -04:00 committed by GitHub
commit 22fb70a996
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,14 +13,13 @@ let
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
pname = "palemoon"; pname = "palemoon";
version = "28.6.0.1"; version = "28.7.0";
src = fetchFromGitHub { src = fetchFromGitHub {
name = "${pname}-${version}";
owner = "MoonchildProductions"; owner = "MoonchildProductions";
repo = "UXP"; repo = "UXP";
rev = "PM${version}_Release"; rev = "PM${version}_Release";
sha256 = "1adgajy5vsghvjlv2nqyrbp6mnv3k6slqxxi8r949xlb5h6d210b"; sha256 = "0i6fy1mvjy6vpqnvhh516mxbv4d2z73yghk3frln4ql8zavba7qq";
}; };
desktopItem = makeDesktopItem { desktopItem = makeDesktopItem {
@ -91,8 +90,6 @@ in stdenv.mkDerivation rec {
" "
''; '';
hardeningDisable = [ "format" ];
buildPhase = '' buildPhase = ''
$src/mach build $src/mach build
''; '';
@ -129,7 +126,7 @@ in stdenv.mkDerivation rec {
''; '';
homepage = "https://www.palemoon.org/"; homepage = "https://www.palemoon.org/";
license = licenses.mpl20; license = licenses.mpl20;
maintainers = with maintainers; [ rnhmjoj AndersonTorres OPNA2608 ]; maintainers = with maintainers; [ AndersonTorres OPNA2608 ];
platforms = [ "i686-linux" "x86_64-linux" ]; platforms = [ "i686-linux" "x86_64-linux" ];
}; };
} }