mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
31 lines
810 B
Nix
31 lines
810 B
Nix
{ lib, fetchFromGitHub, python3Packages, pkgs }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "dr14_tmeter";
|
|
version = "1.0.16";
|
|
|
|
disabled = !python3Packages.isPy3k;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "simon-r";
|
|
repo = "dr14_t.meter";
|
|
rev = "v${version}";
|
|
sha256 = "1nfsasi7kx0myxkahbd7rz8796mcf5nsadrsjjpx2kgaaw5nkv1m";
|
|
};
|
|
|
|
propagatedBuildInputs = with pkgs; [
|
|
python3Packages.numpy flac vorbis-tools ffmpeg faad2 lame
|
|
];
|
|
|
|
# There are no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Compute the DR14 of a given audio file according to the procedure described by the Pleasurize Music Foundation";
|
|
mainProgram = "dr14_tmeter";
|
|
license = licenses.gpl3Plus;
|
|
homepage = "http://dr14tmeter.sourceforge.net/";
|
|
maintainers = [ ];
|
|
};
|
|
}
|