 4a7f99d55d
			
		
	
	
		4a7f99d55d
		
	
	
	
	
		
			
			Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { lib, stdenv, fetchurl, util-linux, coreutils}:
 | |
| 
 | |
| stdenv.mkDerivation rec {
 | |
|   version = "6.42";
 | |
|   pname = "profile-sync-daemon";
 | |
| 
 | |
|   src = fetchurl {
 | |
|     url = "https://github.com/graysky2/profile-sync-daemon/archive/v${version}.tar.gz";
 | |
|     sha256 = "1x47ydrwawkic5cgzp0ikd99g1hbpzc2aalq9z630vm13yw2adnp";
 | |
|   };
 | |
| 
 | |
|   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=${util-linux.bin}/bin:${coreutils}/bin" \
 | |
|       --replace "sudo " "/run/wrappers/bin/sudo "
 | |
|   '';
 | |
| 
 | |
|   preferLocalBuild = true;
 | |
| 
 | |
|   meta = with 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;
 | |
|   };
 | |
| }
 |