gitAndTools.git-codeowners: init at 0.1.1

This commit is contained in:
zimbatm 2017-10-30 15:14:24 +00:00
parent abbea503b9
commit 0a46a71a6e
2 changed files with 23 additions and 0 deletions

View File

@ -58,6 +58,8 @@ rec {
# support for bugzilla # support for bugzilla
git-bz = callPackage ./git-bz { }; git-bz = callPackage ./git-bz { };
git-codeowners = callPackage ./git-codeowners { };
git-cola = callPackage ./git-cola { }; git-cola = callPackage ./git-cola { };
git-crypt = callPackage ./git-crypt { }; git-crypt = callPackage ./git-crypt { };

View File

@ -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 ];
};
}