depot/third_party/nixpkgs/pkgs/applications/version-management/git-and-tools/git-nomad/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

24 lines
705 B
Nix

{ lib, stdenv, rustPlatform, fetchFromGitHub, SystemConfiguration }:
rustPlatform.buildRustPackage rec {
pname = "git-nomad";
version = "0.6.0";
src = fetchFromGitHub {
owner = "rraval";
repo = pname;
rev = "v${version}";
sha256 = "sha256-1PXAdXafkPOIVzaWjW/RlWHwYhMqPoj0Hj5JmOMUj8A=";
};
buildInputs = lib.optionals stdenv.isDarwin [ SystemConfiguration ];
cargoHash = "sha256-ULcdJRla1JwI0y6ngW9xQXjNw2wO48HuAczsNIsJJK0=";
meta = with lib; {
description = "Synchronize work-in-progress git branches in a light weight fashion";
homepage = "https://github.com/rraval/git-nomad";
license = licenses.mit;
maintainers = with maintainers; [ rraval ];
};
}