Merge pull request #242490 from wegank/prl-tools-bump

linuxPackages_latest.prl-tools: 18.3.1-53614 -> 18.3.2-53621
This commit is contained in:
Weijia Wang
2023-07-09 23:25:30 +03:00
committed by GitHub
+5 -5
View File
@@ -34,15 +34,15 @@ let
"${util-linux}/bin"
];
in
stdenv.mkDerivation rec {
version = "18.3.1-53614";
stdenv.mkDerivation (finalAttrs: {
pname = "prl-tools";
version = "18.3.2-53621";
# We download the full distribution to extract prl-tools-lin.iso from
# => ${dmg}/Parallels\ Desktop.app/Contents/Resources/Tools/prl-tools-lin.iso
src = fetchurl {
url = "https://download.parallels.com/desktop/v${lib.versions.major version}/${version}/ParallelsDesktop-${version}.dmg";
hash = "sha256-MZtNxByY2GSoPFeH9mPieCPPNfUgfla+lYgpeD+SgOc=";
url = "https://download.parallels.com/desktop/v${lib.versions.major finalAttrs.version}/${finalAttrs.version}/ParallelsDesktop-${finalAttrs.version}.dmg";
hash = "sha256-mPETZiCI/i6xJ3+ououDKaVwrAxK5cr6L6A16oEgIqk=";
};
hardeningDisable = [ "pic" "format" ];
@@ -173,4 +173,4 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ catap wegank ];
platforms = platforms.linux;
};
}
})