3
0
Fork 0
forked from mirrors/nixpkgs

mask: 0.11.1 -> 0.11.2

This commit is contained in:
figsoda 2022-07-28 11:50:55 +08:00
parent 6372876b36
commit 28f348cd3b

View file

@ -2,23 +2,23 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "mask"; pname = "mask";
version = "0.11.1"; version = "0.11.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jakedeichert"; owner = "jacobdeichert";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-qRN9M/DxkxcF1/dmYqmf3qB8yHzuaN3LRENy1ehgg0c="; sha256 = "sha256-mlARZ05xppPvr6Z5uoveYt3Y3LtdMkbFqxW1EkX+ud0=";
}; };
cargoSha256 = "sha256-7ts63n9aGtaK8INBh11TShOQCVpV+82VADmNbKURv+g="; cargoSha256 = "sha256-EulRz/IjLLvNT9YxyNjJynFEGyQ/Q2Out984xS9Wp5o=";
# tests require mask to be installed # tests require mask to be installed
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {
description = "A CLI task runner defined by a simple markdown file"; description = "A CLI task runner defined by a simple markdown file";
homepage = "https://github.com/jakedeichert/mask"; homepage = "https://github.com/jacobdeichert/mask";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ figsoda ]; maintainers = with maintainers; [ figsoda ];
}; };