evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / mask / package.nix
blob78172cb932a9d00be77badda715b353c18ba889a
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "mask";
5   version = "0.11.6";
7   src = fetchFromGitHub {
8     owner = "jacobdeichert";
9     repo = pname;
10     rev = "mask/${version}";
11     hash = "sha256-xGD23pso5iS+9dmfTMNtR6YqUqKnzJTzMl+OnRGpL3g=";
12   };
14   cargoHash = "sha256-bhf6+nUxg4yIQIjiQYFdtPPF1crFVsofHdEsIOpiH2Q=";
16   # tests require mask to be installed
17   doCheck = false;
19   meta = with lib; {
20     description = "CLI task runner defined by a simple markdown file";
21     mainProgram = "mask";
22     homepage = "https://github.com/jacobdeichert/mask";
23     changelog = "https://github.com/jacobdeichert/mask/blob/mask/${version}/CHANGELOG.md";
24     license = licenses.mit;
25     maintainers = with maintainers; [ figsoda ];
26   };