2018-09-05 19:18:11 +02:00
|
|
|
{ stdenv, fetchurl, utillinux}:
|
2014-12-11 22:12:29 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-09-28 03:32:41 +02:00
|
|
|
version = "6.35";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "profile-sync-daemon";
|
2014-12-11 22:12:29 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 10:14:28 +02:00
|
|
|
url = "https://github.com/graysky2/profile-sync-daemon/archive/v${version}.tar.gz";
|
2019-09-28 03:32:41 +02:00
|
|
|
sha256 = "0hd3cjhf9nv4q5gvc8lbh5c82095lll7mxll1mj5hkzmnijzsf0v";
|
2014-12-11 22:12:29 +01:00
|
|
|
};
|
|
|
|
|
2018-09-05 19:18:11 +02:00
|
|
|
installPhase = ''
|
|
|
|
PREFIX=\"\" DESTDIR=$out make install
|
|
|
|
substituteInPlace $out/bin/profile-sync-daemon \
|
|
|
|
--replace "/usr/" "$out/" \
|
|
|
|
--replace "sudo " "/run/wrappers/bin/sudo "
|
|
|
|
# $HOME detection fails (and is unnecessary)
|
|
|
|
sed -i '/^HOME/d' $out/bin/profile-sync-daemon
|
|
|
|
substituteInPlace $out/bin/psd-overlay-helper \
|
|
|
|
--replace "PATH=/usr/bin:/bin" "PATH=${utillinux.bin}/bin"
|
|
|
|
'';
|
2014-12-11 22:12:29 +01:00
|
|
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Syncs browser profile dirs to RAM";
|
|
|
|
longDescription = ''
|
|
|
|
Profile-sync-daemon (psd) is a tiny pseudo-daemon designed to manage your
|
|
|
|
browser's profile in tmpfs and to periodically sync it back to your
|
|
|
|
physical disc (HDD/SSD). This is accomplished via a symlinking step and
|
|
|
|
an innovative use of rsync to maintain back-up and synchronization
|
|
|
|
between the two. One of the major design goals of psd is a completely
|
|
|
|
transparent user experience.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/graysky2/profile-sync-daemon;
|
|
|
|
downloadPage = https://github.com/graysky2/profile-sync-daemon/releases;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.prikhi ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|