mountain-duck: init at 4.14.1.21330

+37
+35
pkgs/tools/filesystems/mountain-duck/default.nix
··· 1 + { lib 2 + , stdenvNoCC 3 + , fetchurl 4 + , unzip 5 + }: 6 + stdenvNoCC.mkDerivation (finalAttrs: { 7 + pname = "mountain-duck"; 8 + version = "4.14.1.21330"; 9 + 10 + src = fetchurl { 11 + url = "https://dist.mountainduck.io/Mountain%20Duck-${finalAttrs.version}.zip"; 12 + sha256 = "0wcnqwzrhzgjpm7pqzbn4fbnwc5rnmw56gma0a1961d5j9vqcs49"; 13 + }; 14 + dontUnpack = true; 15 + 16 + nativeBuildInputs = [ unzip ]; 17 + 18 + installPhase = '' 19 + runHook preInstall 20 + 21 + mkdir -p $out/Applications 22 + unzip -d $out/Applications $src 23 + 24 + runHook postInstall 25 + ''; 26 + 27 + meta = with lib; { 28 + description = "Mount server and cloud storage as a disk on macOS and Windows"; 29 + homepage = "https://mountainduck.io"; 30 + license = licenses.unfree; 31 + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; 32 + maintainers = with maintainers; [ emilytrau Enzime ]; 33 + platforms = platforms.darwin; 34 + }; 35 + })
+2
pkgs/top-level/all-packages.nix
··· 6153 6153 6154 6154 moosefs = callPackage ../tools/filesystems/moosefs { }; 6155 6155 6156 + mountain-duck = callPackage ../tools/filesystems/mountain-duck { }; 6157 + 6156 6158 mozlz4a = callPackage ../tools/compression/mozlz4a { }; 6157 6159 6158 6160 msr-tools = callPackage ../os-specific/linux/msr-tools { };