about summary refs log tree commit diff
path: root/pkgs/applications/version-management/gitoxide
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-12-01 22:53:41 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-12-03 18:42:29 -0300
commit690da77e6523fe3e2aa3ae9597e8103524dda6bb (patch)
treef70c0ae886aa230d903a1e8e9d31c64f4b882a1e /pkgs/applications/version-management/gitoxide
parentb8cee524136183bc57e45ffe07abac7c6189fb58 (diff)
gitoxide: move to git-and-tools
Diffstat (limited to 'pkgs/applications/version-management/gitoxide')
-rw-r--r--pkgs/applications/version-management/gitoxide/default.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/pkgs/applications/version-management/gitoxide/default.nix b/pkgs/applications/version-management/gitoxide/default.nix
deleted file mode 100644
index d2a51c94727a2..0000000000000
--- a/pkgs/applications/version-management/gitoxide/default.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ lib
-, rustPlatform
-, fetchFromGitHub
-, cmake
-, pkg-config
-, stdenv
-, libiconv
-, Security
-, SystemConfiguration
-, openssl
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "gitoxide";
-  version = "0.19.0";
-
-  src = fetchFromGitHub {
-    owner = "Byron";
-    repo = "gitoxide";
-    rev = "v${version}";
-    sha256 = "sha256-GGXujTn5Xb63vKIycj5o9+PCsMN1Kp3RCSg1wiM31qA=";
-  };
-
-  cargoSha256 = "sha256-MAZhrd9CtFOIAaUUbXplBo+eo6Zaws2LIRkPoX4HztE=";
-
-  nativeBuildInputs = [ cmake pkg-config ];
-  buildInputs = if stdenv.isDarwin
-    then [ libiconv Security SystemConfiguration ]
-    else [ openssl ];
-
-  # Needed to get openssl-sys to use pkg-config.
-  OPENSSL_NO_VENDOR = 1;
-
-  meta = with lib; {
-    description = "A command-line application for interacting with git repositories";
-    homepage = "https://github.com/Byron/gitoxide";
-    changelog = "https://github.com/Byron/gitoxide/blob/v${version}/CHANGELOG.md";
-    license = with licenses; [ mit /* or */ asl20 ];
-    maintainers = with maintainers; [ syberant ];
-  };
-}