Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenv, 4 fetchurl, 5 libmad, 6}: 7 8stdenv.mkDerivation rec { 9 pname = "normalize"; 10 version = "0.7.7"; 11 12 src = fetchurl { 13 url = "mirror://savannah/normalize/${pname}-${version}.tar.gz"; 14 sha256 = "1n5khss10vjjp6w69q9qcl4kqfkd0pr555lgqghrchn6rjms4mb0"; 15 }; 16 17 buildInputs = [ libmad ]; 18 19 meta = with lib; { 20 homepage = "https://www.nongnu.org/normalize/"; 21 description = "Audio file normalizer"; 22 license = licenses.gpl2; 23 platforms = platforms.unix; 24 }; 25}