Commit 7fdc8476 authored by ajs124's avatar ajs124
Browse files

git-dit: remove after being marked broken for over two years

It was marked in commit 68a64b2a by Benjamin Hipple on 2020-03-07 (commited on 2020-03-12)
parent 46604954
Loading
Loading
Loading
Loading
+0 −58
Original line number Diff line number Diff line
{ 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 ];
  };
}
+0 −4
Original line number Diff line number Diff line
@@ -5949,10 +5949,6 @@ with pkgs;
  git-delete-merged-branches = callPackage ../applications/version-management/git-and-tools/git-delete-merged-branches { };
  git-dit = callPackage ../applications/version-management/git-and-tools/git-dit {
    inherit (darwin.apple_sdk.frameworks) CoreFoundation Security;
  };
  git-extras = callPackage ../applications/version-management/git-and-tools/git-extras { };
  git-fame = callPackage ../applications/version-management/git-and-tools/git-fame {};