Merge pull request #36240 from womfoo/fix-bump/conkeror-1.0.4

conkeror: use firefox-esr, 1.0.3 -> 1.0.4

authored by Jörg Thalheim and committed by GitHub ee735ff1 ab59aa73

+4 -4
+4 -4
pkgs/applications/networking/browsers/conkeror/default.nix
··· 1 - { stdenv, fetchgit, unzip, firefox, makeWrapper }: 1 + { stdenv, fetchgit, unzip, firefox-esr, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pkgname = "conkeror"; 5 - version = "1.0.3"; 5 + version = "1.0.4"; 6 6 name = "${pkgname}-${version}"; 7 7 8 8 src = fetchgit { 9 9 url = git://repo.or.cz/conkeror.git; 10 10 rev = "refs/tags/${version}"; 11 - sha256 = "06fhfk8km3gd1lc19543zn0c71zfbn8wsalinvm1dbgi724f52pd"; 11 + sha256 = "10c57wqybp9kcjpkb01wxq0h3vafcdb1g5kb4k8sb2zajg59afv8"; 12 12 }; 13 13 14 14 buildInputs = [ unzip makeWrapper ]; ··· 17 17 mkdir -p $out/libexec/conkeror 18 18 cp -r * $out/libexec/conkeror 19 19 20 - makeWrapper ${firefox}/bin/firefox $out/bin/conkeror \ 20 + makeWrapper ${firefox-esr}/bin/firefox $out/bin/conkeror \ 21 21 --add-flags "-app $out/libexec/conkeror/application.ini" 22 22 ''; 23 23