Merge pull request #70341 from derchrisuk/mp3gain

mp3gain: 1.5.2 -> 1.6.2
This commit is contained in:
Robin Gloster 2019-10-03 21:56:13 +02:00 committed by GitHub
commit 14d5038f05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, unzip }:
{ stdenv, fetchurl, unzip, mpg123 }:
stdenv.mkDerivation {
name = "mp3gain-1.5.2";
name = "mp3gain-1.6.2";
src = fetchurl {
url = "mirror://sourceforge/mp3gain/mp3gain-1_5_2-src.zip";
sha256 = "1jkgry59m8cnnfq05b9y1h4x4wpy3iq8j68slb9qffwa3ajcgbfv";
url = "mirror://sourceforge/mp3gain/mp3gain-1_6_2-src.zip";
sha256 = "0varr6y7k8zarr56b42r0ad9g3brhn5vv3xjg1c0v19jxwr4gh2w";
};
buildInputs = [ unzip ];
buildInputs = [ unzip mpg123 ];
sourceRoot = ".";