summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-03 07:25:59 +0100
committerGitHub <noreply@github.com>2021-01-03 07:25:59 +0100
commit7ce2c5a5f7ca6b1e897b1b99ef8f99a915e5b987 (patch)
tree886d12e4f6bf2539cb3c8f643e3fcccd4bea9c8d /pkgs/applications/audio
parent115dc3122a7e971666064779ade3926bf44e3594 (diff)
parent9796f668e28a887b810cf89d04931b9001cb211d (diff)
Merge pull request #104788 from SuperSandro2000/auto-update/opustags
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/opustags/default.nix37
1 files changed, 31 insertions, 6 deletions
diff --git a/pkgs/applications/audio/opustags/default.nix b/pkgs/applications/audio/opustags/default.nix
index 8e5546aec8b6..4e26c9b77523 100644
--- a/pkgs/applications/audio/opustags/default.nix
+++ b/pkgs/applications/audio/opustags/default.nix
@@ -1,24 +1,49 @@
-{ stdenv, lib, cmake, pkgconfig, libogg, fetchFromGitHub, libiconv }:
+{ stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, libiconv, libogg
+, ffmpeg, glibcLocales, perl, perlPackages }:
+
stdenv.mkDerivation rec {
pname = "opustags";
- version = "1.4.0";
+ version = "1.5.1";
src = fetchFromGitHub {
owner = "fmang";
repo = "opustags";
rev = version;
- sha256 = "1y0czl72paawy342ff9ickaamkih43k59yfcdw7bnddypyfa7nbg";
+ sha256 = "1dicv4s395b9gb4jpr0rnxdq9azr45pid62q3x08lb7cvyq3yxbh";
};
+ patches = [
+ # Fix building on darwin
+ (fetchpatch {
+ url = "https://github.com/fmang/opustags/commit/64fc6f8f6d20e034892e89abff0236c85cae98dc.patch";
+ sha256 = "1djifzqhf1w51gbpqbndsh3gnl9iizp6hppxx8x2a92i9ns22zpg";
+ })
+ (fetchpatch {
+ url = "https://github.com/fmang/opustags/commit/f98208c1a1d10c15f98b127bbfdf88a7b15b08dc.patch";
+ sha256 = "1h3v0r336fca0y8zq1vl2wr8gaqs3vvrrckx7pvji4k1jpiqvp38";
+ })
+ ];
+
buildInputs = [ libogg ];
- nativeBuildInputs = [ cmake pkgconfig ] ++ lib.optional stdenv.isDarwin libiconv;
+ nativeBuildInputs = [ cmake pkg-config ] ++ stdenv.lib.optional stdenv.isDarwin libiconv;
+
+ doCheck = true;
+
+ checkInputs = [ ffmpeg glibcLocales perl ] ++ (with perlPackages; [ ListMoreUtils ]);
+
+ checkPhase = ''
+ export LANG="en_US.UTF-8"
+ export LC_ALL="en_US.UTF-8"
+ make check
+ '';
- meta = with lib; {
+ meta = with stdenv.lib; {
homepage = "https://github.com/fmang/opustags";
description = "Ogg Opus tags editor";
platforms = platforms.all;
- maintainers = [ maintainers.kmein ];
+ broken = stdenv.isDarwin;
+ maintainers = with maintainers; [ kmein SuperSandro2000 ];
license = licenses.bsd3;
};
}