python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / mask / default.nix
blob343d41be6f10772553172e0fd5b20f75ea7f2929
1 { fetchFromGitHub, lib, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "mask";
5   version = "0.11.2";
7   src = fetchFromGitHub {
8     owner = "jacobdeichert";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-mlARZ05xppPvr6Z5uoveYt3Y3LtdMkbFqxW1EkX+ud0=";
12   };
14   cargoSha256 = "sha256-EulRz/IjLLvNT9YxyNjJynFEGyQ/Q2Out984xS9Wp5o=";
16   # tests require mask to be installed
17   doCheck = false;
19   meta = with lib; {
20     description = "A CLI task runner defined by a simple markdown file";
21     homepage = "https://github.com/jacobdeichert/mask";
22     license = licenses.mit;
23     maintainers = with maintainers; [ figsoda ];
24   };