figsoda 2023-10-16 12:52:34 -04:00
parent a367f2c9f6
commit 7c9a9ae044

View File

@ -1,17 +1,17 @@
{ fetchFromGitHub, lib, rustPlatform }:
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "mask";
version = "0.11.3";
version = "0.11.4";
src = fetchFromGitHub {
owner = "jacobdeichert";
repo = pname;
rev = "v${version}";
sha256 = "sha256-mPnykI3scTBzGjDa8nawWYRvZBkq74/t5WMbMbs3zVE=";
rev = "mask/${version}";
hash = "sha256-pi8dD4Fko39yn1maXNOqm+aDWYJhxE/b4kH7H18InbY=";
};
cargoSha256 = "sha256-h58MA3F4UA4gp64UPnK6Tvlvr4PFvrVKmjp48lZjH68=";
cargoHash = "sha256-zbvYSTR0m7S4m0WFQrCqCrMXqMcDW2oIMznD5PDdeHE=";
# tests require mask to be installed
doCheck = false;
@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "A CLI task runner defined by a simple markdown file";
homepage = "https://github.com/jacobdeichert/mask";
changelog = "https://github.com/jacobdeichert/mask/blob/v${version}/CHANGELOG.md";
changelog = "https://github.com/jacobdeichert/mask/blob/mask/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};