summary refs log tree commit diff
path: root/pkgs/applications/networking/gopher/gopherclient/default.nix
blob: 45d9235afc98df2f1f36a891e87a8c929a4f550e (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ stdenv, buildGoPackage, fetchgit, makeWrapper, pkgconfig, qtbase, qtdeclarative, qtwebengine }:

buildGoPackage rec {
  pname = "gopherclient";
  version = "2016-10-02";
  rev = "91c41b5542d08001636708e2a5054521a6004702";

  goPackagePath = "github.com/prologic/gopherclient";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/prologic/gopherclient";
    sha256 = "0b1gvxhv4zg930hvric9mmbfp0lnww0sqlkkfbzfkif3wz9ni5y9";
  };

  nativeBuildInputs = [ makeWrapper pkgconfig ];

  buildInputs = [ qtbase qtdeclarative qtwebengine ];

  preBuild = ''
    # Generate gopherclient resources with genqrc.
    ln -s ${goPackagePath}/vendor/gopkg.in go/src/
    GOBIN="$(pwd)" go install -v gopkg.in/qml.v1/cmd/genqrc
    PATH="$(pwd):$PATH" go generate ${goPackagePath}
  '';

  NIX_CFLAGS_COMPILE = [
    # go-qml needs private Qt headers.
    "-I${qtbase.dev}/include/QtCore/${qtbase.version}"
  ];

  postInstall = ''
    # https://github.com/prologic/gopherclient/#usage
    wrapProgram $bin/bin/gopherclient --prefix GODEBUG , cgocheck=0
  '';

  meta = with stdenv.lib; {
    homepage = https://github.com/prologic/gopherclient;
    description = "Gopher Qt GUI client";
    license = licenses.mit;
    maintainers = with maintainers; [ orivej ];
    platforms = platforms.linux;
    broken = true;
  };
}