2017-10-30 15:14:24 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
name = "git-codeowners-${version}";
|
2017-11-21 20:11:16 +00:00
|
|
|
version = "0.1.2";
|
2017-10-30 15:14:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "softprops";
|
|
|
|
repo = "git-codeowners";
|
|
|
|
rev = "v${version}";
|
2017-11-21 20:11:16 +00:00
|
|
|
sha256 = "0bzq4ridzb4l1zqrj1r0vlzkjpgfaqwky5jf49cwjhz4ybwrfpkq";
|
2017-10-30 15:14:24 +00:00
|
|
|
};
|
|
|
|
|
2019-05-25 12:03:08 +01:00
|
|
|
cargoSha256 = "1k5gxbjv4a8l5y9rm0n4vwzlwp4hk1rb59v0wvcirmj0p7hpw9x9";
|
2017-10-30 15:14:24 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|