about summary refs log tree commit diff
path: root/pkgs/applications/networking/gopher
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2020-04-28 10:34:56 +0100
committerJörg Thalheim <joerg@thalheim.io>2020-04-28 10:34:56 +0100
commit7dfada5f078527d608e887e74a1c17b86fa1063f (patch)
tree5a415e1cde1a90ec90c7e629d35087ece147f6c7 /pkgs/applications/networking/gopher
parent2cd07f1f187ca6cf8cba4ea23543a53b4ea391fa (diff)
downloadnixlib-7dfada5f078527d608e887e74a1c17b86fa1063f.tar
nixlib-7dfada5f078527d608e887e74a1c17b86fa1063f.tar.gz
nixlib-7dfada5f078527d608e887e74a1c17b86fa1063f.tar.bz2
nixlib-7dfada5f078527d608e887e74a1c17b86fa1063f.tar.lz
nixlib-7dfada5f078527d608e887e74a1c17b86fa1063f.tar.xz
nixlib-7dfada5f078527d608e887e74a1c17b86fa1063f.tar.zst
nixlib-7dfada5f078527d608e887e74a1c17b86fa1063f.zip
gopherclient: remove
- no updated since 2016
- broken since 2018
Diffstat (limited to 'pkgs/applications/networking/gopher')
-rw-r--r--pkgs/applications/networking/gopher/gopherclient/default.nix45
1 files changed, 0 insertions, 45 deletions
diff --git a/pkgs/applications/networking/gopher/gopherclient/default.nix b/pkgs/applications/networking/gopher/gopherclient/default.nix
deleted file mode 100644
index 40e9401a40d2..000000000000
--- a/pkgs/applications/networking/gopher/gopherclient/default.nix
+++ /dev/null
@@ -1,45 +0,0 @@
-{ 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;
-  };
-}