* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
		
			
				
	
	
		
			23 lines
		
	
	
		
			584 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			584 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{stdenv, fetchurl, pkgconfig, lua5, curl, quvi_scripts, libquvi}:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  name = "quvi-${version}";
 | 
						|
  version="0.4.0";
 | 
						|
 | 
						|
  src = fetchurl {
 | 
						|
    url = "mirror://sourceforge/quvi/quvi-${version}.tar.gz";
 | 
						|
    sha256 = "0qzyj55py4z7pg97794jjycq8nvrlr02072rgjzg8jgknw49hgfv";
 | 
						|
  };
 | 
						|
 | 
						|
  buildInputs = [ pkgconfig lua5 curl quvi_scripts libquvi ];
 | 
						|
 | 
						|
  meta = { 
 | 
						|
    description = "Web video downloader";
 | 
						|
    homepage = http://quvi.sf.net;
 | 
						|
    license = "LGPLv2.1+";
 | 
						|
    platforms = stdenv.lib.platforms.linux;
 | 
						|
    maintainers = [ stdenv.lib.maintainers.mornfall ]; 
 | 
						|
  };
 | 
						|
}
 | 
						|
 |