Merge pull request #287497 from dev-nis/master

Add NIS One-Click-Backup
This commit is contained in:
Cosima Neidahl 2024-03-03 19:13:35 +01:00 committed by GitHub
commit 12012f534d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 47 additions and 0 deletions

View file

@ -13928,6 +13928,11 @@
githubId = 3159451;
name = "Nicolas Schneider";
};
NIS = {
name = "NSC IT Solutions";
github = "dev-nis";
githubId = 132921300;
};
nitsky = {
name = "nitsky";
github = "nitsky";

View file

@ -0,0 +1,42 @@
{ lib
, stdenv
, fetchFromGitLab
, cmake
, ninja
, qt6
, extra-cmake-modules
}:
stdenv.mkDerivation (finalAttrs: {
pname = "one-click-backup";
version = "1.2.2.1";
src = fetchFromGitLab {
owner = "dev-nis";
repo = "nis-one-click-backup-qt";
rev = finalAttrs.version;
hash = "sha256-F+gA+Z4gZoNJYdy28uIjqiJcwcNsyUzl6BXsiIZO0gE=";
};
nativeBuildInputs = [
cmake
ninja
qt6.wrapQtAppsHook
];
buildInputs = [
qt6.qtdeclarative
extra-cmake-modules
];
meta = with lib; {
description = "Simple Program to backup folders to an external location by copying them";
homepage = "https://gitlab.com/dev-nis/nis-one-click-backup-qt";
changelog = "https://gitlab.com/dev-nis/nis-one-click-backup-qt/-/blob/${finalAttrs.version}/CHANGELOG.md";
license = licenses.gpl3Only;
maintainers = with maintainers; [ NIS ];
mainProgram = "NIS_One-Click-Backup_Qt";
platforms = platforms.all;
broken = stdenv.hostPlatform.isDarwin;
};
})