tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
mask: 0.11.1 -> 0.11.2
figsoda
3 years ago
28f348cd
6372876b
+5
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
mask
default.nix
+5
-5
pkgs/development/tools/mask/default.nix
···
2
2
3
3
rustPlatform.buildRustPackage rec {
4
4
pname = "mask";
5
5
-
version = "0.11.1";
5
5
+
version = "0.11.2";
6
6
7
7
src = fetchFromGitHub {
8
8
-
owner = "jakedeichert";
8
8
+
owner = "jacobdeichert";
9
9
repo = pname;
10
10
rev = "v${version}";
11
11
-
sha256 = "sha256-qRN9M/DxkxcF1/dmYqmf3qB8yHzuaN3LRENy1ehgg0c=";
11
11
+
sha256 = "sha256-mlARZ05xppPvr6Z5uoveYt3Y3LtdMkbFqxW1EkX+ud0=";
12
12
};
13
13
14
14
-
cargoSha256 = "sha256-7ts63n9aGtaK8INBh11TShOQCVpV+82VADmNbKURv+g=";
14
14
+
cargoSha256 = "sha256-EulRz/IjLLvNT9YxyNjJynFEGyQ/Q2Out984xS9Wp5o=";
15
15
16
16
# tests require mask to be installed
17
17
doCheck = false;
18
18
19
19
meta = with lib; {
20
20
description = "A CLI task runner defined by a simple markdown file";
21
21
-
homepage = "https://github.com/jakedeichert/mask";
21
21
+
homepage = "https://github.com/jacobdeichert/mask";
22
22
license = licenses.mit;
23
23
maintainers = with maintainers; [ figsoda ];
24
24
};