mountain-duck: init at 4.14.1.21330

This commit is contained in:
Emily Trau 2023-07-08 01:46:53 +10:00
parent 5cbff28ae6
commit abcb4d0fbc
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ lib
, stdenvNoCC
, fetchurl
, unzip
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "mountain-duck";
version = "4.14.1.21330";
src = fetchurl {
url = "https://dist.mountainduck.io/Mountain%20Duck-${finalAttrs.version}.zip";
sha256 = "0wcnqwzrhzgjpm7pqzbn4fbnwc5rnmw56gma0a1961d5j9vqcs49";
};
dontUnpack = true;
nativeBuildInputs = [ unzip ];
installPhase = ''
runHook preInstall
mkdir -p $out/Applications
unzip -d $out/Applications $src
runHook postInstall
'';
meta = with lib; {
description = "Mount server and cloud storage as a disk on macOS and Windows";
homepage = "https://mountainduck.io";
license = licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
maintainers = with maintainers; [ emilytrau Enzime ];
platforms = platforms.darwin;
};
})

View file

@ -6153,6 +6153,8 @@ with pkgs;
moosefs = callPackage ../tools/filesystems/moosefs { };
mountain-duck = callPackage ../tools/filesystems/mountain-duck { };
mozlz4a = callPackage ../tools/compression/mozlz4a { };
msr-tools = callPackage ../os-specific/linux/msr-tools { };