about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-crecord
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-12-01 07:03:34 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-12-03 18:42:22 -0300
commitf4c3e8fa5a7632726632fd3242e7403360e66fc0 (patch)
treeb01fcb2720684e09acef9fddd37e34372b4cbcf6 /pkgs/applications/version-management/git-crecord
parent5ffe526116a7b1b6a8721ccffe266d60a0aacece (diff)
git-crecord: move to git-and-tools
Diffstat (limited to 'pkgs/applications/version-management/git-crecord')
-rw-r--r--pkgs/applications/version-management/git-crecord/default.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkgs/applications/version-management/git-crecord/default.nix b/pkgs/applications/version-management/git-crecord/default.nix
deleted file mode 100644
index 1ad75e75b7bfd..0000000000000
--- a/pkgs/applications/version-management/git-crecord/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ lib, fetchFromGitHub, python3 }:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "git-crecord";
-  version = "20220324.0";
-
-  src = fetchFromGitHub {
-    owner = "andrewshadura";
-    repo = "git-crecord";
-    rev = version;
-    sha256 = "sha256-LWO9vteTIe54zTDWyRotLKIIi5SaGD0c9s7B5aBHm0s=";
-  };
-
-  propagatedBuildInputs = with python3.pkgs; [ docutils ];
-
-  # has no tests
-  doCheck = false;
-
-  meta = with lib; {
-    homepage = "https://github.com/andrewshadura/git-crecord";
-    description = "Git subcommand to interactively select changes to commit or stage";
-    license = licenses.gpl2Plus;
-    maintainers = with maintainers; [ onny ];
-  };
-}