gitoxide: init at 0.3.0
Fixes: https://github.com/NixOS/nixpkgs/issues/95317
This commit is contained in:
parent
e523c0c232
commit
8fb288515f
24
pkgs/applications/version-management/gitoxide/default.nix
Normal file
24
pkgs/applications/version-management/gitoxide/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -20387,6 +20387,8 @@ in
|
|||||||
|
|
||||||
gitolite = callPackage ../applications/version-management/gitolite { };
|
gitolite = callPackage ../applications/version-management/gitolite { };
|
||||||
|
|
||||||
|
gitoxide = callPackage ../applications/version-management/gitoxide { };
|
||||||
|
|
||||||
inherit (gnome3) gitg;
|
inherit (gnome3) gitg;
|
||||||
|
|
||||||
gmrun = callPackage ../applications/misc/gmrun {};
|
gmrun = callPackage ../applications/misc/gmrun {};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user