Files
nixpkgs/pkgs/by-name/ma/mas/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

67 lines
1.1 KiB
Nix

{
lib,
stdenvNoCC,
fetchurl,
libarchive,
p7zip,
testers,
mas,
}:
stdenvNoCC.mkDerivation rec {
pname = "mas";
version = "2.2.2";
src = fetchurl {
url = "https://github.com/mas-cli/mas/releases/download/v${version}/mas-${version}.pkg";
hash = "sha256-v+tiD5ZMVFzeShyuOt8Ss3yw6p8VjopHaMimOQznL6o=";
};
nativeBuildInputs = [
libarchive
p7zip
];
unpackPhase = ''
runHook preUnpack
7z x $src
bsdtar -xf Payload~
runHook postUnpack
'';
dontBuild = true;
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp mas $out/bin
runHook postInstall
'';
passthru.tests = {
version = testers.testVersion {
package = mas;
command = "mas version";
};
};
meta = with lib; {
description = "Mac App Store command line interface";
homepage = "https://github.com/mas-cli/mas";
license = licenses.mit;
mainProgram = "mas";
maintainers = with maintainers; [
steinybot
zachcoyle
];
platforms = [
"x86_64-darwin"
"aarch64-darwin"
];
};
}