From 9b60125d5dd2b335ef0356f5564da8a33894760d Mon Sep 17 00:00:00 2001 From: Simarra Date: Tue, 5 Oct 2021 22:08:02 +0200 Subject: [PATCH] cozy-drive: Add Cozy Drive package. (#138730) * pkg(cozy-drive): Add Cozy Drive package. * fix(cozy-drive): Remove unwanted file. * fix(cozy-drive): Fix unwanted deletion on clipcat rl * pkg(cozy-drive): Add rl-2111 section ran with script * cozy-drive: init - release-note Delete useless release note entry. Co-authored-by: Sandro * cozy-drive: init fix syntax Fix syntax on with meta lib Co-authored-by: Sandro * maintainers: add Simarra * cozy-drive: init. Fix maintenair name * cozy-drive: init. remove unwanted rl section * cozy-drive: init. set 3.30.0 version * cozy-drive: v3.30.0>v3.30.1 Co-authored-by: Sandro --- maintainers/maintainer-list.nix | 6 ++++ .../networking/cozy-drive/default.nix | 35 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 43 insertions(+) create mode 100644 pkgs/applications/networking/cozy-drive/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 6e5a5daa170..e34f9e823e1 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -10300,6 +10300,12 @@ fingerprint = "ADF4 C13D 0E36 1240 BD01 9B51 D1DE 6D7F 6936 63A5"; }]; }; + simarra = { + name = "simarra"; + email = "loic.martel@protonmail.com"; + github = "simarra"; + githubId = 14372987; + }; simonchatts = { email = "code@chatts.net"; github = "simonchatts"; diff --git a/pkgs/applications/networking/cozy-drive/default.nix b/pkgs/applications/networking/cozy-drive/default.nix new file mode 100644 index 00000000000..75a11b0ea12 --- /dev/null +++ b/pkgs/applications/networking/cozy-drive/default.nix @@ -0,0 +1,35 @@ +{ lib +, fetchurl +, appimageTools +}: + +let + pname = "cozydrive"; + version = "3.30.1"; + name = "${pname}-${version}"; + + src = fetchurl { + url = "https://github.com/cozy-labs/cozy-desktop/releases/download/v${version}/Cozy-Drive-${version}-x86_64.AppImage"; + sha256 = "06w305l5iadd4k70jvrvw2scwlfxycign2nz0f2vrwwhqy8bpfqs"; + }; + appimageContents = appimageTools.extract { inherit name src; }; + +in +appimageTools.wrapType2 { + inherit name src; + extraInstallCommands = '' + mv $out/bin/${name} $out/bin/${pname} + install -m 444 -D ${appimageContents}/cozydrive.desktop -t $out/share/applications + substituteInPlace $out/share/applications/cozydrive.desktop \ + --replace 'Exec=AppRun' 'Exec=${pname}' + cp -r ${appimageContents}/usr/share/icons $out/share + ''; + + meta = with lib; { + description = "Cozy Drive is a synchronization tool for your files and folders with Cozy Cloud."; + homepage = "https://cozy.io"; + license = licenses.gpl3Only; + maintainers = with maintainers; [ "Simarra" ]; + platforms = [ "x86_64-linux" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index aad9f5e9fee..4a63d915193 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23925,6 +23925,8 @@ with pkgs; buildGoPackage = buildGo115Package; }; + cozy-drive = callPackage ../applications/networking/cozy-drive {}; + cq-editor = libsForQt5.callPackage ../applications/graphics/cq-editor { python3Packages = python37Packages; };