mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 07:34:36 +00:00
fbdf78236a
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
27 lines
641 B
Nix
27 lines
641 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "wavegain";
|
|
version = "1.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MestreLion";
|
|
repo = "wavegain";
|
|
rev = "c928eaf97aeec5732625491b64c882e08e314fee";
|
|
sha256 = "0wghqnsbypmr4xcrhb568bfjdnxzzp8qgnws3jslzmzf34dpk5ls";
|
|
};
|
|
|
|
installPhase = ''
|
|
strip -s wavegain
|
|
install -vD wavegain "$out/bin/wavegain"
|
|
'';
|
|
|
|
meta = {
|
|
description = "ReplayGain for wave files";
|
|
homepage = "https://github.com/MestreLion/wavegain";
|
|
license = lib.licenses.lgpl21;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.robbinch ];
|
|
};
|
|
}
|