nixpkgs/pkgs/by-name/ma/mask/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
770 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
2021-09-09 03:49:41 +01:00
rustPlatform.buildRustPackage rec {
pname = "mask";
2024-10-14 03:19:18 +01:00
version = "0.11.6";
2021-09-09 03:49:41 +01:00
src = fetchFromGitHub {
2022-07-28 04:50:55 +01:00
owner = "jacobdeichert";
2021-09-09 03:49:41 +01:00
repo = pname;
rev = "mask/${version}";
2024-10-14 03:19:18 +01:00
hash = "sha256-xGD23pso5iS+9dmfTMNtR6YqUqKnzJTzMl+OnRGpL3g=";
2021-09-09 03:49:41 +01:00
};
2024-10-14 03:19:18 +01:00
cargoHash = "sha256-bhf6+nUxg4yIQIjiQYFdtPPF1crFVsofHdEsIOpiH2Q=";
2021-09-09 03:49:41 +01:00
# tests require mask to be installed
doCheck = false;
meta = with lib; {
description = "CLI task runner defined by a simple markdown file";
mainProgram = "mask";
2022-07-28 04:50:55 +01:00
homepage = "https://github.com/jacobdeichert/mask";
changelog = "https://github.com/jacobdeichert/mask/blob/mask/${version}/CHANGELOG.md";
2021-09-09 03:49:41 +01:00
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
};
}