2013-08-21 19:56:33 +00:00
|
|
|
{ stdenv, fetchurl, coreutils, python, duplicity, gawk, gnupg1, bash
|
2014-09-24 19:46:12 +00:00
|
|
|
, gnugrep, txt2man, makeWrapper, which
|
2014-01-02 16:53:57 +00:00
|
|
|
}:
|
2013-08-21 19:56:33 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2015-09-16 05:57:29 +00:00
|
|
|
name = "duply-1.9.2";
|
2013-08-21 19:56:33 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-09-16 05:57:29 +00:00
|
|
|
url = "mirror://sourceforge/project/ftplicity/duply%20%28simple%20duplicity%29/1.9.x/duply_1.9.2.tgz";
|
|
|
|
sha256 = "1ay50rsr90dcnjncjclzfckqmxxnizmi4jhb5rsybfn0xdj0kz1b";
|
2013-08-21 19:56:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ txt2man makeWrapper ];
|
|
|
|
|
2017-08-11 09:40:08 +00:00
|
|
|
postPatch = "patchShebangs .";
|
2013-08-21 19:56:33 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
mkdir -p "$out/share/man/man1"
|
2017-08-11 09:40:08 +00:00
|
|
|
install -vD duply "$out/bin"
|
2013-08-21 19:56:33 +00:00
|
|
|
wrapProgram "$out/bin/duply" --set PATH \
|
2017-08-11 09:40:08 +00:00
|
|
|
${stdenv.lib.makeBinPath [ coreutils python duplicity gawk gnupg1 bash gnugrep txt2man which ]}
|
|
|
|
"$out/bin/duply" txt2man > "$out/share/man/man1/duply.1"
|
2013-08-21 19:56:33 +00: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
|
|
|
|
http://duplicity.nongnu.org/. It greatly simplifies it's usage by
|
|
|
|
implementing backup job profiles, batch commands and more. Who says
|
|
|
|
secure backups on non-trusted spaces are no child's play?
|
|
|
|
'';
|
|
|
|
homepage = http://duply.net/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2016-12-26 20:56:09 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-08-21 19:56:33 +00:00
|
|
|
};
|
|
|
|
}
|