mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
Merge pull request #242086 from emilytrau/cyberduck
cyberduck: init at 8.6.0.39818
This commit is contained in:
commit
62f33c97b8
35
pkgs/applications/networking/cyberduck/default.nix
Normal file
35
pkgs/applications/networking/cyberduck/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib
|
||||
, stdenvNoCC
|
||||
, fetchurl
|
||||
, unzip
|
||||
}:
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "cyberduck";
|
||||
version = "8.6.0.39818";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://update.cyberduck.io/Cyberduck-${finalAttrs.version}.zip";
|
||||
sha256 = "1iqq54n267lmmdlv8wmr9k461p49jindc1mn5wy742k08cqxc5ab";
|
||||
};
|
||||
dontUnpack = true;
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/Applications
|
||||
unzip -d $out/Applications $src
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Libre file transfer client for Mac and Windows";
|
||||
homepage = "https://cyberduck.io";
|
||||
license = licenses.gpl3Plus;
|
||||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
||||
maintainers = with maintainers; [ emilytrau Enzime ];
|
||||
platforms = platforms.darwin;
|
||||
};
|
||||
})
|
@ -30712,6 +30712,8 @@ with pkgs;
|
||||
|
||||
cwm = callPackage ../applications/window-managers/cwm { };
|
||||
|
||||
cyberduck = callPackage ../applications/networking/cyberduck { };
|
||||
|
||||
cyclone = callPackage ../applications/audio/pd-plugins/cyclone { };
|
||||
|
||||
dablin = callPackage ../applications/radio/dablin { };
|
||||
|
Loading…
Reference in New Issue
Block a user