Skip to content

Commit

Permalink
gitAndTools.git-codeowners: init at 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbatm committed Oct 30, 2017
1 parent abbea50 commit 0a46a71
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Expand Up @@ -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 { };
Expand Down
@@ -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 ];
};
}

0 comments on commit 0a46a71

Please sign in to comment.