summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers/qtchan/default.nix
blob: 9a4d61a50aee50f312f81b43d030081548078920 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ mkDerivation, lib, fetchFromGitHub, qmake, qtbase }:

mkDerivation rec {
  pname = "qtchan";
  version = "1.0.1";

  src = fetchFromGitHub {
    owner  = "siavash119";
    repo   = "qtchan";
    rev    = "v${version}";
    sha256 = "1x11m1kwqindzc0dkpfifcglsb362impaxs85kgzx50p898sz9ll";
  };

  enableParallelBuilding = true;
  nativeBuildInputs = [ qmake ];
  buildInputs = [ qtbase ];
  qmakeFlags = [ "CONFIG-=app_bundle" ];

  installPhase = ''
    mkdir -p $out/bin
    cp qtchan $out/bin
  '';

  meta = with lib; {
    description = "4chan browser in qt5";
    homepage    = "https://github.com/siavash119/qtchan";
    license     = licenses.mit;
    maintainers = with maintainers; [ chiiruno ];
    platforms   = platforms.unix;
  };
}