summary refs log tree commit diff
path: root/pkgs/applications/audio/easytag
diff options
context:
space:
mode:
authorJohannes Frankenau <johannes@frankenau.net>2018-04-07 16:06:06 +0200
committerJohannes Frankenau <johannes@frankenau.net>2018-04-07 16:06:06 +0200
commit04b592e0fa18b530287bff8c69db2b5d1112bed4 (patch)
tree8cfdefcaf2a424932305ef3b63534539d3e3a266 /pkgs/applications/audio/easytag
parentf8fe297ff1dd7caebee4b923ce2178da090564ac (diff)
downloadnixpkgs-04b592e0fa18b530287bff8c69db2b5d1112bed4.tar
nixpkgs-04b592e0fa18b530287bff8c69db2b5d1112bed4.tar.gz
nixpkgs-04b592e0fa18b530287bff8c69db2b5d1112bed4.tar.bz2
nixpkgs-04b592e0fa18b530287bff8c69db2b5d1112bed4.tar.lz
nixpkgs-04b592e0fa18b530287bff8c69db2b5d1112bed4.tar.xz
nixpkgs-04b592e0fa18b530287bff8c69db2b5d1112bed4.tar.zst
nixpkgs-04b592e0fa18b530287bff8c69db2b5d1112bed4.zip
easytag: add opus support
Diffstat (limited to 'pkgs/applications/audio/easytag')
-rw-r--r--pkgs/applications/audio/easytag/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/audio/easytag/default.nix b/pkgs/applications/audio/easytag/default.nix
index 1ca2570fd4b..e3263c944f4 100644
--- a/pkgs/applications/audio/easytag/default.nix
+++ b/pkgs/applications/audio/easytag/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, intltool, gtk3, glib, libid3tag, id3lib, taglib
-, libvorbis, libogg, flac, itstool, libxml2, gsettings-desktop-schemas
+, libvorbis, libogg, opusfile, flac, itstool, libxml2, gsettings-desktop-schemas
 , gnome3, wrapGAppsHook
 }:
 
@@ -18,7 +18,7 @@ in stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig intltool itstool libxml2 wrapGAppsHook ];
   buildInputs = [
-    gtk3 glib libid3tag id3lib taglib libvorbis libogg flac
+    gtk3 glib libid3tag id3lib taglib libvorbis libogg opusfile flac
     gsettings-desktop-schemas gnome3.defaultIconTheme
   ];