summary refs log tree commit diff
path: root/pkgs/applications/audio/deadbeef
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-04-08 21:46:57 +0200
committerJan Tojnar <jtojnar@gmail.com>2019-04-13 15:51:18 +0200
commit8fa29da48acd8ed81d3e2ceff5f5f907da138168 (patch)
treea3aea61622dbe01d62b5cfc2084bc67919213862 /pkgs/applications/audio/deadbeef
parentb2a933aa777017d1769c493a415df106b66e7fd7 (diff)
downloadnixpkgs-8fa29da48acd8ed81d3e2ceff5f5f907da138168.tar
nixpkgs-8fa29da48acd8ed81d3e2ceff5f5f907da138168.tar.gz
nixpkgs-8fa29da48acd8ed81d3e2ceff5f5f907da138168.tar.bz2
nixpkgs-8fa29da48acd8ed81d3e2ceff5f5f907da138168.tar.lz
nixpkgs-8fa29da48acd8ed81d3e2ceff5f5f907da138168.tar.xz
nixpkgs-8fa29da48acd8ed81d3e2ceff5f5f907da138168.tar.zst
nixpkgs-8fa29da48acd8ed81d3e2ceff5f5f907da138168.zip
deadbeefPlugins.opus: drop
opus support is now built into deadbeef
Diffstat (limited to 'pkgs/applications/audio/deadbeef')
-rw-r--r--pkgs/applications/audio/deadbeef/plugins/opus.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/applications/audio/deadbeef/plugins/opus.nix b/pkgs/applications/audio/deadbeef/plugins/opus.nix
deleted file mode 100644
index 55db00c15bf..00000000000
--- a/pkgs/applications/audio/deadbeef/plugins/opus.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ stdenv, fetchFromBitbucket, opusfile, libopus, libogg, openssl, deadbeef }:
-
-stdenv.mkDerivation rec {
-  name = "deadbeef-opus-plugin-${version}";
-  version = "0.8";
-
-  src = fetchFromBitbucket {
-    owner = "Lithopsian";
-    repo = "deadbeef-opus";
-    rev = "v${version}";
-    sha256 = "057rgsw4563gs63k05s7zsdc0n4djxwlbyqabf7c88f23z35ryyi";
-  };
-
-  makeFlags = [
-    "PREFIX=$(out)"
-  ];
-
-  NIX_CFLAGS_COMPILE = [
-    "-I${opusfile}/include/opus"
-  ];
-
-  buildInputs = [ deadbeef opusfile libopus libogg openssl ];
-
-  meta = with stdenv.lib; {
-    description = "Ogg Opus decoder plugin for the DeaDBeeF music player";
-    homepage = https://bitbucket.org/Lithopsian/deadbeef-opus;
-    license = licenses.gpl2; # There are three files, each licensed under different license: zlib, gpl2Plus and lgpl2
-    maintainers = [ maintainers.jtojnar ];
-    platforms = platforms.linux;
-  };
-}