Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
54 lines
1.0 KiB
Nix
54 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
makeWrapper,
|
|
mariadb,
|
|
mailutils,
|
|
pbzip2,
|
|
pigz,
|
|
bzip2,
|
|
gzip,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "automysqlbackup";
|
|
version = "3.0.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sixhop";
|
|
repo = "automysqlbackup";
|
|
tag = version;
|
|
sha256 = "sha256-C0p1AY4yIxybQ6a/HsE3ZTHumtvQw5kKM51Ap+Se0ZI=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $out/etc
|
|
|
|
cp automysqlbackup $out/bin/
|
|
cp automysqlbackup.conf $out/etc/
|
|
|
|
wrapProgram $out/bin/automysqlbackup --prefix PATH : ${
|
|
lib.makeBinPath [
|
|
mariadb
|
|
mailutils
|
|
pbzip2
|
|
pigz
|
|
bzip2
|
|
gzip
|
|
]
|
|
}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Script to run daily, weekly and monthly backups for your MySQL database";
|
|
mainProgram = "automysqlbackup";
|
|
homepage = "https://github.com/sixhop/AutoMySQLBackup";
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.aanderse ];
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|