1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
7 src = fetchFromGitHub {
8 owner = "jacobdeichert";
10 rev = "mask/${version}";
11 hash = "sha256-pi8dD4Fko39yn1maXNOqm+aDWYJhxE/b4kH7H18InbY=";
14 cargoHash = "sha256-zbvYSTR0m7S4m0WFQrCqCrMXqMcDW2oIMznD5PDdeHE=";
16 # tests require mask to be installed
20 description = "A CLI task runner defined by a simple markdown file";
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 ];