Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / networking / cyberduck / default.nix
blob2fb9664437182561ed7f1527f28179c3451aa315
1 { lib
2 , stdenvNoCC
3 , fetchurl
4 , unzip
5 }:
6 stdenvNoCC.mkDerivation (finalAttrs: {
7   pname = "cyberduck";
8   version = "8.6.0.39818";
10   src = fetchurl {
11     url = "https://update.cyberduck.io/Cyberduck-${finalAttrs.version}.zip";
12     sha256 = "1iqq54n267lmmdlv8wmr9k461p49jindc1mn5wy742k08cqxc5ab";
13   };
14   dontUnpack = true;
16   nativeBuildInputs = [ unzip ];
18   installPhase = ''
19     runHook preInstall
21     mkdir -p $out/Applications
22     unzip -d $out/Applications $src
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Libre file transfer client for Mac and Windows";
29     homepage = "https://cyberduck.io";
30     license = licenses.gpl3Plus;
31     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
32     maintainers = with maintainers; [ emilytrau Enzime ];
33     platforms = platforms.darwin;
34   };