mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
32 lines
766 B
Nix
32 lines
766 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
git,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "git-nomad";
|
|
version = "0.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rraval";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-N+iPr389l9PDfJIhvRL6ziGSPI6pgvfdGX6wxmapLhA=";
|
|
};
|
|
|
|
cargoHash = "sha256-7CZC29y9dLpyanolO+epKd0KwmRc1iGY+sPM9f/j5hk=";
|
|
|
|
nativeCheckInputs = [ git ];
|
|
|
|
meta = with lib; {
|
|
description = "Synchronize work-in-progress git branches in a light weight fashion";
|
|
homepage = "https://github.com/rraval/git-nomad";
|
|
changelog = "https://github.com/rraval/git-nomad/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ rraval ];
|
|
mainProgram = "git-nomad";
|
|
};
|
|
}
|