Merge pull request #195389 from rraval/git-nomad
git-nomad: init at 0.6.0
This commit is contained in:
commit
63ade0c7f2
2 changed files with 24 additions and 0 deletions
|
@ -0,0 +1,22 @@
|
|||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "git-nomad";
|
||||
version = "0.6.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rraval";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-1PXAdXafkPOIVzaWjW/RlWHwYhMqPoj0Hj5JmOMUj8A=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -6970,6 +6970,8 @@ with pkgs;
|
|||
|
||||
git-my = callPackage ../applications/version-management/git-and-tools/git-my { };
|
||||
|
||||
git-nomad = callPackage ../applications/version-management/git-and-tools/git-nomad { };
|
||||
|
||||
git-octopus = callPackage ../applications/version-management/git-and-tools/git-octopus { };
|
||||
|
||||
git-open = callPackage ../applications/version-management/git-and-tools/git-open { };
|
||||
|
|
Loading…
Reference in a new issue