about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorajs124 <git@ajs124.de>2022-03-31 22:04:07 +0200
committerajs124 <git@ajs124.de>2022-04-03 16:14:14 +0100
commit7fdc84763a94139d5ac6315551474d42e5faf00c (patch)
tree46419189a86628f5110341eb5ec13967a1ebc8ae /pkgs/applications/version-management
parent46604954b9dc35196ae226fc7234555dd7c922c7 (diff)
git-dit: remove after being marked broken for over two years
It was marked in commit 68a64b2afea20d1293289f3c2bbed15a0af3621b by Benjamin Hipple on 2020-03-07 (commited on 2020-03-12)
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/git-and-tools/git-dit/default.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/pkgs/applications/version-management/git-and-tools/git-dit/default.nix b/pkgs/applications/version-management/git-and-tools/git-dit/default.nix
deleted file mode 100644
index f1aeda1a5c7b5..0000000000000
--- a/pkgs/applications/version-management/git-and-tools/git-dit/default.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, openssl_1_0_2
-, zlib
-, libssh
-, cmake
-, perl
-, pkg-config
-, rustPlatform
-, curl
-, libiconv
-, CoreFoundation
-, Security
-}:
-
-with rustPlatform;
-
-buildRustPackage rec {
-  pname = "git-dit";
-  version = "0.4.0";
-
-  src = fetchFromGitHub {
-    owner = "neithernut";
-    repo = "git-dit";
-    rev = "v${version}";
-    sha256 = "1sx6sc2dj3l61gbiqz8vfyhw5w4xjdyfzn1ixz0y8ipm579yc7a2";
-  };
-
-  cargoSha256 = "1vbcwl4aii0x4l8w9jhm70vi4s95jr138ly65jpkkv26rl6zjiph";
-
-  nativeBuildInputs = [
-    cmake
-    pkg-config
-    perl
-  ];
-
-  buildInputs = [
-    openssl_1_0_2
-    libssh
-    zlib
-  ] ++ lib.optionals (stdenv.isDarwin) [
-    curl
-    libiconv
-    CoreFoundation
-    Security
-  ];
-
-  meta = with lib; {
-    inherit (src.meta) homepage;
-    description = "Decentralized Issue Tracking for git";
-    # This has not had a release in years and its cargo vendored dependencies
-    # fail to compile. It also depends on an unsupported openssl:
-    # https://github.com/NixOS/nixpkgs/issues/77503
-    broken = true;
-    license = licenses.gpl2;
-    maintainers = with maintainers; [ Profpatsch matthiasbeyer ];
-  };
-}