Moving all of my Emacs-related files into their own directory at the root of this repository.
		
			
				
	
	
		
			12 lines
		
	
	
		
			No EOL
		
	
	
		
			168 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			No EOL
		
	
	
		
			168 B
		
	
	
	
		
			Text
		
	
	
	
	
	
# -*- mode: snippet -*-
 | 
						|
# name: shell.nix boilerplate
 | 
						|
# key: import
 | 
						|
# --
 | 
						|
with import <nixpkgs> {};
 | 
						|
 | 
						|
stdenv.mkDerivation {
 | 
						|
  name = "$1";
 | 
						|
  buildInputs = [
 | 
						|
    $2
 | 
						|
  ];
 | 
						|
} |