vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / os-specific / darwin / mas / default.nix
blob968cb10cd5a3b180bcca44dd21a5edad319327ca
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , installShellFiles
5 , testers
6 , mas
7 }:
9 stdenvNoCC.mkDerivation rec {
10   pname = "mas";
11   version = "1.8.6";
13   src = fetchurl {
14     # Use the tarball until https://github.com/mas-cli/mas/issues/452 is fixed.
15     # Even though it looks like an OS/arch specific build it is actually a universal binary.
16     url = "https://github.com/mas-cli/mas/releases/download/v${version}/mas-${version}.monterey.bottle.tar.gz";
17     sha256 = "0q4skdhymgn5xrwafyisfshx327faia682yv83mf68r61m2jl10d";
18   };
20   nativeBuildInputs = [ installShellFiles ];
22   installPhase = ''
23     install -D './${version}/bin/mas' "$out/bin/mas"
24     installShellCompletion --cmd mas --bash './${version}/etc/bash_completion.d/mas'
25   '';
27   passthru.tests = {
28     version = testers.testVersion {
29       package = mas;
30       command = "mas version";
31     };
32   };
34   meta = with lib; {
35     description = "Mac App Store command line interface";
36     homepage = "https://github.com/mas-cli/mas";
37     license = licenses.mit;
38     maintainers = with maintainers; [ steinybot zachcoyle ];
39     platforms = [ "x86_64-darwin" "aarch64-darwin" ];
40   };