mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
25 lines
668 B
Nix
25 lines
668 B
Nix
|
{ stdenv, qt5, cmake, openssl, gst_all_1, fetchFromGitHub
|
||
|
, version ? "0.9.94"
|
||
|
, sourceSha ? "19mfm0f6qqkd78aa6q4nq1y9gnlasqiyk68zgqjp1i03g70h08k5"
|
||
|
}:
|
||
|
stdenv.mkDerivation {
|
||
|
name = "otter-browser-${version}";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "OtterBrowser";
|
||
|
repo = "otter-browser";
|
||
|
rev = "v${version}";
|
||
|
sha256 = sourceSha;
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [ cmake ];
|
||
|
|
||
|
buildInputs = with qt5; [ qtbase qtmultimedia qtwebengine ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
license = licenses.gpl3;
|
||
|
description = "Browser aiming to recreate the best aspects of the classic Opera (12.x) UI using Qt5";
|
||
|
maintainers = with maintainers; [ lheckemann ];
|
||
|
};
|
||
|
}
|