6593ce7ef9
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 0.9.96 with grep in /nix/store/hy3dyckwbq8x0ylgydqf3hsd0yyj38mf-otter-browser-0.9.96 - directory tree listing: https://gist.github.com/3ba5ac755cab96acd876703e94dff4b4
26 lines
693 B
Nix
26 lines
693 B
Nix
{ stdenv, cmake, openssl, gst_all_1, fetchFromGitHub
|
|
, qtbase, qtmultimedia, qtwebengine
|
|
, version ? "0.9.96"
|
|
, sourceSha ? "1xzfy3jjx9sskwwbk7l8hnwnjf8af62p4kjkydp0ld0j50apc39p"
|
|
}:
|
|
stdenv.mkDerivation {
|
|
name = "otter-browser-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "OtterBrowser";
|
|
repo = "otter-browser";
|
|
rev = "v${version}";
|
|
sha256 = sourceSha;
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ qtbase qtmultimedia qtwebengine ];
|
|
|
|
meta = with stdenv.lib; {
|
|
license = licenses.gpl3Plus;
|
|
description = "Browser aiming to recreate the best aspects of the classic Opera (12.x) UI using Qt5";
|
|
maintainers = with maintainers; [ lheckemann ];
|
|
};
|
|
}
|