gitoxide: init at 0.3.0

Fixes: https://github.com/NixOS/nixpkgs/issues/95317
This commit is contained in:
syberant 2020-08-16 08:26:59 +02:00 committed by Alyssa Ross
parent e523c0c232
commit 8fb288515f
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "gitoxide";
version = "0.3.0";
src = fetchFromGitHub {
owner = "Byron";
repo = "gitoxide";
rev = "v${version}";
sha256 = "0xpic9jx7nrxi5d8lqch2vxpvipx994d717c4n0kgr3ipyij1347";
};
cargoSha256 = "104lyfni75h1i30s2jlzf66sp1czfd9ywqz78kj4i7lfdf6fc4x9";
meta = with lib; {
description =
"A command-line application for interacting with git repositories";
homepage = "https://github.com/Byron/gitoxide";
# NOTE: the master branch is dual-licensed with APACHE but v0.3.0 is only MIT
license = licenses.mit;
maintainers = [ maintainers.syberant ];
};
}

View file

@ -20387,6 +20387,8 @@ in
gitolite = callPackage ../applications/version-management/gitolite { };
gitoxide = callPackage ../applications/version-management/gitoxide { };
inherit (gnome3) gitg;
gmrun = callPackage ../applications/misc/gmrun {};