2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, coreutils, python2, duplicity, gawk, gnupg, bash
|
2014-09-24 20:46:12 +01:00
|
|
|
, gnugrep, txt2man, makeWrapper, which
|
2014-01-02 16:53:57 +00:00
|
|
|
}:
|
2013-08-21 20:56:33 +01:00
|
|
|
|
2018-08-07 10:08:49 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "duply";
|
2021-01-21 23:02:42 +00:00
|
|
|
version = "2.3";
|
2013-08-21 20:56:33 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-21 23:02:42 +00:00
|
|
|
url = "mirror://sourceforge/project/ftplicity/duply%20%28simple%20duplicity%29/2.3.x/duply_${version}.tgz";
|
|
|
|
sha256 = "sha256-I1KkblFnZVOCvcWEarGsSXnzlod2+yZ4okaTpckLFbE=";
|
2013-08-21 20:56:33 +01:00
|
|
|
};
|
|
|
|
|
2021-02-07 09:17:39 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
buildInputs = [ txt2man ];
|
2013-08-21 20:56:33 +01:00
|
|
|
|
2017-08-11 10:40:08 +01:00
|
|
|
postPatch = "patchShebangs .";
|
2013-08-21 20:56:33 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
mkdir -p "$out/share/man/man1"
|
2017-08-11 10:40:08 +01:00
|
|
|
install -vD duply "$out/bin"
|
2013-08-21 20:56:33 +01:00
|
|
|
wrapProgram "$out/bin/duply" --set PATH \
|
2021-01-15 09:19:50 +00:00
|
|
|
${lib.makeBinPath [ coreutils python2 duplicity gawk gnupg bash gnugrep txt2man which ]}
|
2017-08-11 10:40:08 +01:00
|
|
|
"$out/bin/duply" txt2man > "$out/share/man/man1/duply.1"
|
2013-08-21 20:56:33 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2013-08-21 20:56:33 +01:00
|
|
|
description = "Shell front end for the duplicity backup tool";
|
|
|
|
longDescription = ''
|
|
|
|
Duply is a shell front end for the duplicity backup tool
|
2018-12-01 17:32:32 +00:00
|
|
|
https://www.nongnu.org/duplicity. It greatly simplifies its usage by
|
2013-08-21 20:56:33 +01:00
|
|
|
implementing backup job profiles, batch commands and more. Who says
|
|
|
|
secure backups on non-trusted spaces are no child's play?
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://duply.net/";
|
2013-08-21 20:56:33 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2013-08-21 20:56:33 +01:00
|
|
|
};
|
|
|
|
}
|