mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
gitAndTools.git-codeowners: init at 0.1.1
This commit is contained in:
parent
abbea503b9
commit
0a46a71a6e
@ -58,6 +58,8 @@ rec {
|
||||
# support for bugzilla
|
||||
git-bz = callPackage ./git-bz { };
|
||||
|
||||
git-codeowners = callPackage ./git-codeowners { };
|
||||
|
||||
git-cola = callPackage ./git-cola { };
|
||||
|
||||
git-crypt = callPackage ./git-crypt { };
|
||||
|
@ -0,0 +1,21 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
rustPlatform.buildRustPackage rec {
|
||||
name = "git-codeowners-${version}";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "softprops";
|
||||
repo = "git-codeowners";
|
||||
rev = "v${version}";
|
||||
sha256 = "0imxbi6y1165bi2rik0n98v79fkgp8alb615qh41idg1p2krzyy5";
|
||||
};
|
||||
|
||||
cargoSha256 = "0h831rf5vlvpzfm4sr3fvwlc0ys776fqis90y414mczphkxvz437";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/softprops/git-codeowners";
|
||||
description = "a git extension to work with CODEOWNERS files";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ zimbatm ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user