45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, libarchive
|
|
, p7zip
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mas";
|
|
version = "1.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mas-cli/mas/releases/download/v${version}/mas.pkg";
|
|
sha256 = "W/wgg+ETeJPoZ7MoVGH2uJzQiZMLIy3n1JYKUloc3ZU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ libarchive p7zip ];
|
|
|
|
unpackPhase = ''
|
|
7z x $src
|
|
bsdtar -xf Payload~
|
|
'';
|
|
|
|
doBuild = false;
|
|
|
|
installPhase = ''
|
|
mkdir -p $out
|
|
cp -r ./bin $out
|
|
cp -r ./Frameworks $out
|
|
'';
|
|
|
|
postFixup = ''
|
|
install_name_tool -change @rpath/MasKit.framework/Versions/A/MasKit $out/Frameworks/MasKit.framework/Versions/A/MasKit $out/bin/mas
|
|
install_name_tool -change @rpath/Commandant.framework/Commandant $out/Frameworks/MasKit.framework/Versions/A/Frameworks/Commandant.framework/Versions/A/Commandant $out/bin/mas
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Mac App Store command line interface";
|
|
homepage = "https://github.com/mas-cli/mas";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ zachcoyle ];
|
|
platforms = platforms.darwin;
|
|
};
|
|
}
|