wavegain: Add package.

This adds wavegain which is a normalizer for WAV audio files.

Robbin C 13ea5b65 ef667f77

+24
+22
pkgs/applications/audio/wavegain/default.nix
··· 1 + { stdenv, fetchgit }: 2 + 3 + stdenv.mkDerivation { 4 + name = "wavegain-1.3.1"; 5 + src = fetchgit { 6 + url = "https://github.com/MestreLion/wavegain.git"; 7 + sha256 = "1h886xijc9d7h4p6qx12c6kgwmp6s1bdycnyylkayfncczzlbi24"; 8 + }; 9 + 10 + installPhase = '' 11 + strip -s wavegain 12 + install -vD wavegain "$out/bin/wavegain" 13 + ''; 14 + 15 + meta = { 16 + description = "ReplayGain for wave files"; 17 + homepage = https://github.com/MestreLion/wavegain; 18 + license = stdenv.lib.licenses.lgpl21; 19 + platforms = stdenv.lib.platforms.linux; 20 + maintainers = [ stdenv.lib.maintainers.devhell ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 14677 14677 14678 14678 VisualBoyAdvance = callPackage ../misc/emulators/VisualBoyAdvance { }; 14679 14679 14680 + wavegain = callPackage ../applications/audio/wavegain { }; 14681 + 14680 14682 # Wine defaults to a mixed 64 / 32 build on x86_64 and to pure 32 on x86 14681 14683 wine = callPackage ../misc/emulators/wine { 14682 14684 wineRelease = config.wine.release or "stable";