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