Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / version-management / git-codeowners / default.nix
blob862461827eb17c39ee5943def4b736bd2b6dbe8b
1 { lib, rustPlatform, fetchFromGitHub }:
2 rustPlatform.buildRustPackage rec {
3   pname = "git-codeowners";
4   version = "0.1.2";
6   src = fetchFromGitHub {
7     owner = "softprops";
8     repo = "git-codeowners";
9     rev = "v${version}";
10     sha256 = "0bzq4ridzb4l1zqrj1r0vlzkjpgfaqwky5jf49cwjhz4ybwrfpkq";
11   };
13   cargoSha256 = "00wi64v2zn8rp8fjwbdwyvl3pva5sn9xclaawp2m222dqnlszb2d";
15   meta = with lib; {
16     homepage = "https://github.com/softprops/git-codeowners";
17     description = "a git extension to work with CODEOWNERS files";
18     license = licenses.mit;
19     maintainers = with maintainers; [ zimbatm ];
20   };