Merge pull request #232461 from figsoda/git-mit

git-mit: fix build on darwin, adopt

Changed files
+16 -10
pkgs
applications
version-management
git-mit
+16 -10
pkgs/applications/version-management/git-mit/default.nix
···
{ lib
-
, stdenv
+
, rustPlatform
, fetchFromGitHub
-
, rustPlatform
+
, pkg-config
+
, libgit2_1_5
, openssl
-
, libgit2
-
, libssh2
, zlib
-
, pkg-config
+
, stdenv
+
, darwin
}:
let
···
cargoHash = "sha256-YtUuRLjmehG+5kUiCo4LK0PkKAckr28UahlrAjm9MYw=";
-
doCheck = true;
-
nativeBuildInputs = [ pkg-config ];
-
buildInputs = [ openssl libgit2 libssh2 zlib ];
+
buildInputs = [
+
libgit2_1_5
+
openssl
+
zlib
+
] ++ lib.optionals stdenv.isDarwin [
+
darwin.apple_sdk.frameworks.AppKit
+
];
-
meta = {
+
meta = with lib; {
description = "Minimalist set of hooks to aid pairing and link commits to issues";
homepage = "https://github.com/PurpleBooth/git-mit";
-
license = lib.licenses.cc0;
+
changelog = "https://github.com/PurpleBooth/git-mit/releases/tag/v${version}";
+
license = licenses.cc0;
+
maintainers = with maintainers; [ figsoda ];
};
}