14 rustPlatform.buildRustPackage rec {
15 pname = "git-workspace";
18 src = fetchFromGitHub {
22 sha256 = "sha256-sS452PCX2G49Q5tnScG+ySkUAhFctGsGZrMvQXL7WkY=";
25 cargoHash = "sha256-OrAZ4SGhqP+cGYB2gUIh6rON67hBRmgnq1nn9cEUAU0=";
27 nativeBuildInputs = [ pkg-config ];
29 buildInputs = [ openssl ]
30 ++ lib.optionals stdenv.hostPlatform.isDarwin [ libiconv Security ];
32 passthru.updateScript = nix-update-script { };
35 description = "Sync personal and work git repositories from multiple providers";
36 homepage = "https://github.com/orf/git-workspace";
37 license = with licenses; [ mit ];
38 maintainers = with maintainers; [ misuzu ];
39 mainProgram = "git-workspace";