about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-cola/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/version-management/git-cola/default.nix')
-rw-r--r--pkgs/applications/version-management/git-cola/default.nix69
1 files changed, 0 insertions, 69 deletions
diff --git a/pkgs/applications/version-management/git-cola/default.nix b/pkgs/applications/version-management/git-cola/default.nix
deleted file mode 100644
index c1c909e8827f..000000000000
--- a/pkgs/applications/version-management/git-cola/default.nix
+++ /dev/null
@@ -1,69 +0,0 @@
-{ stdenv
-, lib
-, fetchFromGitHub
-, python3Packages
-, gettext
-, git
-, qt5
-, gitUpdater
-}:
-
-python3Packages.buildPythonApplication rec {
-  pname = "git-cola";
-  version = "4.8.2";
-  pyproject = true;
-
-  src = fetchFromGitHub {
-    owner = "git-cola";
-    repo = "git-cola";
-    rev = "v${version}";
-    hash = "sha256-8OErZ6uKTWE245BoBu9lQyTLA43DfWaYDv3wbPWaufg=";
-  };
-
-  buildInputs = lib.optionals stdenv.isLinux [
-    qt5.qtwayland
-  ];
-
-  propagatedBuildInputs = with python3Packages; [
-    setuptools
-    git
-    pyqt5
-    qtpy
-    send2trash
-    polib
-  ];
-
-  nativeBuildInputs = with python3Packages; [
-    setuptools-scm
-    gettext
-    qt5.wrapQtAppsHook
-  ];
-
-  nativeCheckInputs = with python3Packages; [
-    git
-    pytestCheckHook
-  ];
-
-  disabledTestPaths = [
-    "qtpy/"
-    "contrib/win32"
-  ] ++ lib.optionals stdenv.isDarwin [
-    "cola/inotify.py"
-  ];
-
-  preFixup = ''
-    makeWrapperArgs+=("''${qtWrapperArgs[@]}")
-  '';
-
-  passthru.updateScript = gitUpdater {
-    rev-prefix = "v";
-  };
-
-  meta = with lib; {
-    homepage = "https://github.com/git-cola/git-cola";
-    description = "Sleek and powerful Git GUI";
-    license = licenses.gpl2;
-    maintainers = [ maintainers.bobvanderlinden ];
-    mainProgram = "git-cola";
-  };
-}