summary refs log tree commit diff
path: root/pkgs/applications/audio/bs1770gain/default.nix
diff options
context:
space:
mode:
authorBernardo Meurer <bernardo@meurer.org>2021-01-02 16:42:38 -0800
committerDoron Behar <doron.behar@gmail.com>2021-01-03 14:36:54 +0200
commit264f7981eefac5171e75e10c13517e3241f6eb30 (patch)
treef7508a18e776bcf8eb78d27744a9f0184e6801d8 /pkgs/applications/audio/bs1770gain/default.nix
parentcea2b9eff4788e538b5dab382d6346d1836080ba (diff)
downloadnixpkgs-264f7981eefac5171e75e10c13517e3241f6eb30.tar
nixpkgs-264f7981eefac5171e75e10c13517e3241f6eb30.tar.gz
nixpkgs-264f7981eefac5171e75e10c13517e3241f6eb30.tar.bz2
nixpkgs-264f7981eefac5171e75e10c13517e3241f6eb30.tar.lz
nixpkgs-264f7981eefac5171e75e10c13517e3241f6eb30.tar.xz
nixpkgs-264f7981eefac5171e75e10c13517e3241f6eb30.tar.zst
nixpkgs-264f7981eefac5171e75e10c13517e3241f6eb30.zip
bs1770gain: nuke
The package is filled with white supremacist hate speech, and the only
reverse dependency on it, beets, can now use ffmpeg instead.
Diffstat (limited to 'pkgs/applications/audio/bs1770gain/default.nix')
-rw-r--r--pkgs/applications/audio/bs1770gain/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/pkgs/applications/audio/bs1770gain/default.nix b/pkgs/applications/audio/bs1770gain/default.nix
deleted file mode 100644
index 76a78935619..00000000000
--- a/pkgs/applications/audio/bs1770gain/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ stdenv, fetchurl, ffmpeg, sox }:
-
-stdenv.mkDerivation rec {
-  pname = "bs1770gain";
-  version = "0.5.2";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/bs1770gain/${pname}-${version}.tar.gz";
-    sha256 = "1p6yz5q7czyf9ard65sp4kawdlkg40cfscr3b24znymmhs3p7rbk";
-  };
-
-  buildInputs = [ ffmpeg sox ];
-
-  NIX_CFLAGS_COMPILE = "-Wno-error";
-
-  meta = with stdenv.lib; {
-    description = "A audio/video loudness scanner implementing ITU-R BS.1770";
-    license = licenses.gpl2Plus;
-    homepage = "http://bs1770gain.sourceforge.net/";
-    platforms = platforms.all;
-  };
-}