aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/common.nix32
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/qt.nix26
-rw-r--r--infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/qt4.nix28
3 files changed, 45 insertions, 41 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/common.nix b/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/common.nix
index 6244cd661d0a..73b40ea111a7 100644
--- a/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/common.nix
+++ b/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/common.nix
@@ -1,34 +1,40 @@
-{stdenv, fetchFromGitHub, makeWrapper, gettext, python3Packages, rsync, cron, openssh, sshfs-fuse, encfs }:
+{stdenv, lib, fetchFromGitHub, makeWrapper, gettext,
+python3, rsync, cron, openssh, sshfs-fuse, encfs }:
let
- inherit (python3Packages) python dbus-python keyring;
-in stdenv.mkDerivation rec {
- version = "1.1.24";
+ python' = python3.withPackages (ps: with ps; [ dbus-python keyring ]);
+ apps = lib.makeBinPath [ openssh python' cron rsync sshfs-fuse encfs ];
+in stdenv.mkDerivation rec {
pname = "backintime-common";
+ version = "1.2.1";
src = fetchFromGitHub {
owner = "bit-team";
repo = "backintime";
rev = "v${version}";
- sha256 = "0g6gabnr60ns8854hijdddbanks7319q4n3fj5l6rc4xsq0qck18";
+ sha256 = "mBjheLY7DHs995heZmxVnDdvABkAROCjRJ4a/uJmJcg=";
};
- buildInputs = [ makeWrapper gettext python dbus-python keyring openssh cron rsync sshfs-fuse encfs ];
+ nativeBuildInputs = [ makeWrapper gettext ];
+ buildInputs = [ python' ];
installFlags = [ "DEST=$(out)" ];
- preConfigure = "cd common";
+ preConfigure = ''
+ cd common
+ substituteInPlace configure \
+ --replace "/.." "" \
+ --replace "share/backintime" "${python'.sitePackages}/backintime"
+ substituteInPlace "backintime" \
+ --replace "share" "${python'.sitePackages}"
+ '';
dontAddPrefix = true;
- preFixup =
- ''
- substituteInPlace "$out/bin/backintime" \
- --replace "=\"/usr/share" "=\"$prefix/share"
+ preFixup = ''
wrapProgram "$out/bin/backintime" \
- --prefix PYTHONPATH : "$PYTHONPATH" \
- --prefix PATH : "$prefix/bin:$PATH"
+ --prefix PATH : ${apps}
'';
meta = {
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/qt.nix b/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/qt.nix
new file mode 100644
index 000000000000..a48d6d8804fe
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/qt.nix
@@ -0,0 +1,26 @@
+{ mkDerivation, backintime-common, python3 }:
+
+let
+ python' = python3.withPackages (ps: with ps; [ pyqt5 backintime-common ]);
+in
+mkDerivation {
+ inherit (backintime-common)
+ version src installFlags meta dontAddPrefix nativeBuildInputs;
+
+ pname = "backintime-qt";
+
+ buildInputs = [ python' backintime-common ];
+
+ preConfigure = ''
+ cd qt
+ substituteInPlace configure \
+ --replace '"/../etc' '"/etc'
+ substituteInPlace qttools.py \
+ --replace "__file__, os.pardir, os.pardir" '"${backintime-common}/${python'.sitePackages}/backintime"'
+ '';
+
+ preFixup = ''
+ wrapQtApp "$out/bin/backintime-qt" \
+ --prefix PATH : "${backintime-common}/bin:$PATH"
+ '';
+}
diff --git a/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/qt4.nix b/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/qt4.nix
deleted file mode 100644
index b72ddc8bae63..000000000000
--- a/infra/libkookie/nixpkgs/pkgs/applications/networking/sync/backintime/qt4.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{stdenv, makeWrapper, gettext, backintime-common, python3, python3Packages }:
-
-stdenv.mkDerivation {
- inherit (backintime-common) version src installFlags;
-
- pname = "backintime-qt4";
-
- buildInputs = [ makeWrapper gettext python3 python3Packages.pyqt4 backintime-common python3 ];
-
- preConfigure = "cd qt4";
- configureFlags = [ ];
-
- dontAddPrefix = true;
-
- preFixup =
- ''
- substituteInPlace "$out/bin/backintime-qt4" \
- --replace "=\"/usr/share" "=\"$prefix/share"
-
- wrapProgram "$out/bin/backintime-qt4" \
- --prefix PYTHONPATH : "${backintime-common}/share/backintime/common:$PYTHONPATH" \
- --prefix PATH : "${backintime-common}/bin:$PATH"
- '';
-
- meta = with stdenv.lib; {
- broken = true;
- };
-}