2018-08-06 08:36:55 +01:00
|
|
|
{ stdenv, fetchurl, coreutils, python2, duplicity, gawk, gnupg1, 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 {
|
|
|
|
name = "duply-${version}";
|
2019-01-28 23:45:40 +00:00
|
|
|
version = "2.2";
|
2013-08-21 20:56:33 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-01-28 23:45:40 +00:00
|
|
|
url = "mirror://sourceforge/project/ftplicity/duply%20%28simple%20duplicity%29/2.2.x/duply_${version}.tgz";
|
|
|
|
sha256 = "1bd7ivswxmxg64n0fnwgz6bkgckhdhz2qnnlkqqx4ccdxx15krbr";
|
2013-08-21 20:56:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ txt2man makeWrapper ];
|
|
|
|
|
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 \
|
2018-08-06 08:36:55 +01:00
|
|
|
${stdenv.lib.makeBinPath [ coreutils python2 duplicity gawk gnupg1 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
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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?
|
|
|
|
'';
|
2018-12-01 17:32:32 +00:00
|
|
|
homepage = https://duply.net/;
|
2013-08-21 20:56:33 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2016-12-26 20:56:09 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-08-21 20:56:33 +01:00
|
|
|
};
|
|
|
|
}
|