summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitless
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-12-01 22:46:10 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-12-03 18:42:28 -0300
commit7389c44bcdc3bb02088dc0460351bd3ca96526ca (patch)
treeb65918e70ffd55e8c4474f8e555a410e74919b68 /pkgs/applications/version-management/gitless
parent6d744e7d9613a2ee1ed98f403b9846412963fe16 (diff)
downloadnixpkgs-7389c44bcdc3bb02088dc0460351bd3ca96526ca.tar
nixpkgs-7389c44bcdc3bb02088dc0460351bd3ca96526ca.tar.gz
nixpkgs-7389c44bcdc3bb02088dc0460351bd3ca96526ca.tar.bz2
nixpkgs-7389c44bcdc3bb02088dc0460351bd3ca96526ca.tar.lz
nixpkgs-7389c44bcdc3bb02088dc0460351bd3ca96526ca.tar.xz
nixpkgs-7389c44bcdc3bb02088dc0460351bd3ca96526ca.tar.zst
nixpkgs-7389c44bcdc3bb02088dc0460351bd3ca96526ca.zip
gitless: move to git-and-tools
Diffstat (limited to 'pkgs/applications/version-management/gitless')
-rw-r--r--pkgs/applications/version-management/gitless/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/applications/version-management/gitless/default.nix b/pkgs/applications/version-management/gitless/default.nix
deleted file mode 100644
index 31ab40d7947..00000000000
--- a/pkgs/applications/version-management/gitless/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib
-, fetchFromGitHub
-, python3
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "gitless";
-  version = "0.8.8";
-  format = "setuptools";
-
-  src = fetchFromGitHub {
-    owner = "gitless-vcs";
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-xo5EWtP2aN8YzP8ro3bnxZwUGUp0PHD0g8hk+Y+gExE=";
-  };
-
-  nativeBuildInputs = [ python3.pkgs.pythonRelaxDepsHook ];
-
-  propagatedBuildInputs = with python3.pkgs; [
-    sh
-    pygit2
-    clint
-  ];
-
-  pythonRelaxDeps = [ "pygit2" ];
-
-  doCheck = false;
-
-  pythonImportsCheck = [
-    "gitless"
-  ];
-
-  meta = with lib; {
-    description = "Version control system built on top of Git";
-    homepage = "https://gitless.com/";
-    license = licenses.mit;
-    maintainers = with maintainers; [ cransom ];
-    platforms = platforms.all;
-  };
-}