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
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, stdenv, fetchFromGitHub, cmake, gtest, boost, gd, libsndfile, libmad, libid3tag }:
 | 
						|
 | 
						|
stdenv.mkDerivation rec {
 | 
						|
  pname = "audiowaveform";
 | 
						|
  version = "1.4.2";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "bbc";
 | 
						|
    repo = "audiowaveform";
 | 
						|
    rev = version;
 | 
						|
    sha256 = "0k2s2f2hgq4pnjzfkgvjwgsflihmzdq7shicfjn0z2mzw4d1bvp2";
 | 
						|
  };
 | 
						|
 | 
						|
  nativeBuildInputs = [ cmake gtest ];
 | 
						|
 | 
						|
  buildInputs = [ boost gd libsndfile libmad libid3tag ];
 | 
						|
 | 
						|
  preConfigure = ''
 | 
						|
    ln -s ${gtest.src}/googletest googletest
 | 
						|
    ln -s ${gtest.src}/googlemock googlemock
 | 
						|
  '';
 | 
						|
 | 
						|
  # One test is failing, see PR #101947
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "C++ program to generate waveform data and render waveform images from audio files";
 | 
						|
    longDescription = ''
 | 
						|
      audiowaveform is a C++ command-line application that generates waveform data from either MP3, WAV, FLAC, or Ogg Vorbis format audio files.
 | 
						|
      Waveform data can be used to produce a visual rendering of the audio, similar in appearance to audio editing applications.
 | 
						|
    '';
 | 
						|
    homepage = "https://github.com/bbc/audiowaveform";
 | 
						|
    changelog = "https://github.com/bbc/audiowaveform/blob/${version}/ChangeLog";
 | 
						|
    license = licenses.gpl3Plus;
 | 
						|
    platforms = platforms.all;
 | 
						|
    maintainers = with maintainers; [ edbentley ];
 | 
						|
  };
 | 
						|
}
 |