about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/audio/vorbis-tools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/audio/vorbis-tools/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/audio/vorbis-tools/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/audio/vorbis-tools/default.nix b/nixpkgs/pkgs/applications/audio/vorbis-tools/default.nix
new file mode 100644
index 000000000000..865d82a73562
--- /dev/null
+++ b/nixpkgs/pkgs/applications/audio/vorbis-tools/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchurl, libogg, libvorbis, libao, pkg-config, curl
+, speex, flac
+, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+  pname = "vorbis-tools";
+  version = "1.4.2";
+
+  src = fetchurl {
+    url = "http://downloads.xiph.org/releases/vorbis/vorbis-tools-${version}.tar.gz";
+    sha256 = "1c7h4ivgfdyygz2hyh6nfibxlkz8kdk868a576qkkjgj5gn78xyv";
+  };
+
+  nativeBuildInputs = [ autoreconfHook pkg-config ];
+  buildInputs = [ libogg libvorbis libao curl speex flac ];
+
+  meta = with lib; {
+    description = "Extra tools for Ogg-Vorbis audio codec";
+    longDescription = ''
+      A set of command-line tools to manipulate Ogg Vorbis audio
+      files, notably the `ogg123' player and the `oggenc' encoder.
+    '';
+    homepage = "https://xiph.org/vorbis/";
+    license = licenses.gpl2;
+    platforms = platforms.all;
+  };
+}
+