mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #36240 from womfoo/fix-bump/conkeror-1.0.4
conkeror: use firefox-esr, 1.0.3 -> 1.0.4
This commit is contained in:
commit
ee735ff1f9
1 changed files with 4 additions and 4 deletions
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, fetchgit, unzip, firefox, makeWrapper }:
|
||||
{ stdenv, fetchgit, unzip, firefox-esr, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pkgname = "conkeror";
|
||||
version = "1.0.3";
|
||||
version = "1.0.4";
|
||||
name = "${pkgname}-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = git://repo.or.cz/conkeror.git;
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "06fhfk8km3gd1lc19543zn0c71zfbn8wsalinvm1dbgi724f52pd";
|
||||
sha256 = "10c57wqybp9kcjpkb01wxq0h3vafcdb1g5kb4k8sb2zajg59afv8";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip makeWrapper ];
|
||||
|
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||
mkdir -p $out/libexec/conkeror
|
||||
cp -r * $out/libexec/conkeror
|
||||
|
||||
makeWrapper ${firefox}/bin/firefox $out/bin/conkeror \
|
||||
makeWrapper ${firefox-esr}/bin/firefox $out/bin/conkeror \
|
||||
--add-flags "-app $out/libexec/conkeror/application.ini"
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue