chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / gi / git-together / package.nix
blob44ae1249a59c3bb2aaa6e5657641fa9758dfb31b
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , rustPlatform
5 , openssl
6 , pkg-config
7 , darwin
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "git-together";
12   version = "v0.1.0-alpha.26";
14   src = fetchFromGitHub {
15     owner = "kejadlen";
16     repo = "git-together";
17     rev = version;
18     hash = "sha256-2HgOaqlX0mmmvRlALHm90NAdIhby/jWUJO63bQFqc+4=";
19   };
21   nativeBuildInputs = [ pkg-config ];
22   buildInputs = [ openssl ] ++ lib.optional stdenv.hostPlatform.isDarwin darwin.Security;
24   OPENSSL_NO_VENDOR = true;
26   cargoHash = "sha256-mIkhXVuSgcsQf4be7NT0R8rkN9tdgim41gqjbq3ndPA=";
28   meta = with lib; {
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";
35   };