-
-
Notifications
You must be signed in to change notification settings - Fork 15.5k
dr14_tmeter: init at 1.0.16 #27092
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dr14_tmeter: init at 1.0.16 #27092
Conversation
@adisbladis, thanks for your PR! By analyzing the history of the files in this pull request, we identified @zimbatm, @zraexy and @vcunat to be potential reviewers. |
|
||
let | ||
inherit (python3Packages) buildPythonApplication; | ||
in buildPythonApplication rec { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can just write python3Packages.buildPythonApplication
.
|
||
meta = with stdenv.lib; { | ||
description = "Compute the DR14 of a given audio file according to the procedure described by the Pleasurize Music Foundation"; | ||
license = stdenv.lib.licenses.gpl3Plus; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using with stdenv.lib
you bring everything into scope that is in stdenv.lib
. Therefore you can just write license = licenses.gpl3Plus;
description = "Compute the DR14 of a given audio file according to the procedure described by the Pleasurize Music Foundation"; | ||
license = stdenv.lib.licenses.gpl3Plus; | ||
homepage = http://dr14tmeter.sourceforge.net/; | ||
maintainers = [ stdenv.lib.maintainers.adisbladis ]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same thing here: maintainers = [ maintainers.adisbladis ];
.
7ac9da8
to
c6f5726
Compare
@pSub Changes made |
Motivation for this change
Useful tool for checking dynamic range (DR14) of audio files.
Things done
(nix.useSandbox on NixOS,
or option
build-use-sandbox
innix.conf
on non-NixOS)
nix-shell -p nox --run "nox-review wip"
./result/bin/
)