2015-06-10 03:40:25 -07:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
2015-06-02 20:06:24 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "wavegain-1.3.1";
|
2015-06-10 03:40:25 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "MestreLion";
|
|
|
|
repo = "wavegain";
|
|
|
|
rev = "c928eaf97aeec5732625491b64c882e08e314fee";
|
|
|
|
sha256 = "0wghqnsbypmr4xcrhb568bfjdnxzzp8qgnws3jslzmzf34dpk5ls";
|
2015-06-02 20:06:24 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
strip -s wavegain
|
|
|
|
install -vD wavegain "$out/bin/wavegain"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "ReplayGain for wave files";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/MestreLion/wavegain";
|
2015-06-02 20:06:24 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl21;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-06-07 19:31:30 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.robbinch ];
|
2015-06-02 20:06:24 -07:00
|
|
|
};
|
|
|
|
}
|