Merge: zmap: 4.2.0 -> 4.3.1 (#364578)
[NixPkgs.git] / pkgs / by-name / gi / git-codeowners / package.nix
blobb206a4312c800acbc84e51d6c265aee7b7225b65
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "git-codeowners";
8   version = "0.1.2";
10   src = fetchFromGitHub {
11     owner = "softprops";
12     repo = "git-codeowners";
13     rev = "v${version}";
14     hash = "sha256-eF6X+fLkQ8lZIk4WPzlW7l05P90gB5nxD5Ss32Im+C8=";
15   };
17   cargoHash = "sha256-TayvqcVNCFHF5UpR1pPVRe076Pa8LS4duhnZLzYxkQM=";
19   meta = with lib; {
20     homepage = "https://github.com/softprops/git-codeowners";
21     description = "Git extension to work with CODEOWNERS files";
22     license = licenses.mit;
23     maintainers = with maintainers; [ zimbatm ];
24     mainProgram = "git-codeowners";
25   };