10 rustPlatform.buildRustPackage rec {
11 pname = "git-together";
12 version = "v0.1.0-alpha.26";
14 src = fetchFromGitHub {
16 repo = "git-together";
18 hash = "sha256-2HgOaqlX0mmmvRlALHm90NAdIhby/jWUJO63bQFqc+4=";
21 nativeBuildInputs = [ pkg-config ];
22 buildInputs = [ openssl ] ++ lib.optional stdenv.hostPlatform.isDarwin darwin.Security;
24 OPENSSL_NO_VENDOR = true;
26 cargoHash = "sha256-mIkhXVuSgcsQf4be7NT0R8rkN9tdgim41gqjbq3ndPA=";
29 changelog = "https://github.com/kejadlen/git-together/releases/tag/${src.rev}";
30 description = "Better commit attribution while pairing without messing with your git workflow";
31 homepage = "https://github.com/kejadlen/git-together";
32 license = licenses.mit;
33 maintainers = with maintainers; [ sentientmonkey ];
34 mainProgram = "git-together";