Unverified Commit 2cb9af43 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #261447 from figsoda/mask

mask: 0.11.3 -> 0.11.4
parents a88b9cbd 7c9a9ae0
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
{ 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 ];
  };