summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/arora/default.nix
blob: da042c77c40be5fc2a460a6003b1dee63c2aba8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, qt4, qmake4Hook }:

stdenv.mkDerivation rec {
  name = "arora-${version}";
  version = "0.11.0";

  src = fetchurl {
    url = "https://github.com/Arora/arora/archive/${version}.tar.gz";
    sha256 = "1ffkranxi93lrg5r7a90pix9j8xqmf0z1mb1m8579v9m34cyypvg";
  };

  buildInputs = [ qt4 ];
  nativeBuildInputs = [ qmake4Hook ];

  meta = with stdenv.lib; {
    platforms = qt4.meta.platforms;
    maintainers = [ maintainers.phreedom ];
    description = "A cross-platform Qt4 Webkit browser";
    homepage = https://github.com/Arora/arora;
  };
}