]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Add duply and boinctui
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Fri, 1 Mar 2019 15:44:37 +0000 (16:44 +0100)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Fri, 1 Mar 2019 15:44:37 +0000 (16:44 +0100)
default.nix

index 6072d60fd98d04e17a0ec4a1f33f9fdecba3ca44..674a72f89f64ed8f5c1b8c52ce0bb9d7d010af76 100644 (file)
@@ -385,6 +385,66 @@ let
   in
     packageEnv.package;
 
+  mypkgs.duply = stdenv.mkDerivation rec {
+    name = "duply-${version}";
+    version = "2.1";
+
+    src = fetchurl {
+      url = "mirror://sourceforge/project/ftplicity/duply%20%28simple%20duplicity%29/2.1.x/duply_${version}.tgz";
+      sha256 = "0i5j7h7h6ssrwhll0sfhymisshg54kx7j45zcqffzjxa0ylvzlm8";
+    };
+
+    buildInputs = [ txt2man makeWrapper ];
+
+    postPatch = "patchShebangs .";
+
+    installPhase = ''
+      mkdir -p "$out/bin"
+      mkdir -p "$out/share/man/man1"
+      install -vD duply "$out/bin"
+      sed -i $out/bin/duply -e "1a \
+      export PATH='${stdenv.lib.makeBinPath [ coreutils python2 duplicity gawk gnupg1 bash gnugrep txt2man which ]}'
+      " -e "1a \
+      export DUPL_PYTHON_BIN=$(basename ${duplicity}/lib/python*)
+      "
+      "$out/bin/duply" txt2man > "$out/share/man/man1/duply.1"
+    '';
+
+    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 ];
+      platforms = stdenv.lib.platforms.unix;
+    };
+  };
+
+  mypkgs.boinctui = stdenv.mkDerivation rec {
+    name = "boinctui-${version}";
+    version = "2.5.0";
+    src = fetchurl {
+      url = "http://sourceforge.net/projects/boinctui/files/boinctui_${version}.tar.gz";
+      sha256 = "16zxp8r4z6pllacdacg681y56cg2phnn3pm5gwszbsi93cix2g8p";
+    };
+
+    configureFlags = [ "--without-gnutls" ];
+    preConfigure = ''
+      autoconf
+      '';
+
+    preBuild = ''
+      sed -i -e 's/"HOME"/"XDG_CONFIG_HOME"/' src/cfg.cpp
+      sed -i -e 's@\.boinctui\.cfg@boinctui/boinctui.cfg@' src/mainprog.cpp
+      '';
+    buildInputs = [ expat openssl autoconf ncurses ];
+  };
+
   mypkgs.sc-im = sc-im.overrideAttrs (old: {
     buildPhase = ''
       cd src