about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEmery Hemingway <ehmry@posteo.net>2023-11-30 16:53:27 +0200
committerEmery Hemingway <ehmry@posteo.net>2023-11-30 17:05:00 +0200
commit69b6e4df0ac1c348a8d8baf599ecd0f54f71817e (patch)
tree826d69d8d6ffc191ea1fb2ee98834e5f93a06431 /pkgs/applications
parentacab2ad0e77f1b9e27cd3217e69a004959487353 (diff)
downloadnixlib-69b6e4df0ac1c348a8d8baf599ecd0f54f71817e.tar
nixlib-69b6e4df0ac1c348a8d8baf599ecd0f54f71817e.tar.gz
nixlib-69b6e4df0ac1c348a8d8baf599ecd0f54f71817e.tar.bz2
nixlib-69b6e4df0ac1c348a8d8baf599ecd0f54f71817e.tar.lz
nixlib-69b6e4df0ac1c348a8d8baf599ecd0f54f71817e.tar.xz
nixlib-69b6e4df0ac1c348a8d8baf599ecd0f54f71817e.tar.zst
nixlib-69b6e4df0ac1c348a8d8baf599ecd0f54f71817e.zip
butt: 0.1.39 -> 0.1.40
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/audio/butt/default.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/applications/audio/butt/default.nix b/pkgs/applications/audio/butt/default.nix
deleted file mode 100644
index 01e35f9450e7..000000000000
--- a/pkgs/applications/audio/butt/default.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ lib, stdenv, fetchurl, pkg-config, fltk13, portaudio, lame, libvorbis, libogg
-, flac, libopus, libsamplerate, fdk_aac, dbus, openssl, curl }:
-
-stdenv.mkDerivation rec {
-  pname = "butt";
-  version = "0.1.39";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
-    hash = "sha256-dh6NceHiqpN6PVwKIo2jV3qCO17P6E6QHdZGRVyd6/g=";
-  };
-
-  postPatch = ''
-    # remove advertising
-    substituteInPlace src/FLTK/flgui.cpp \
-      --replace 'idata_radio_co_badge, 124, 61, 4,' 'nullptr, 0, 0, 0,'
-  '';
-
-  nativeBuildInputs = [ pkg-config ];
-
-  buildInputs = [
-    fltk13
-    portaudio
-    lame
-    libvorbis
-    libogg
-    flac
-    libopus
-    libsamplerate
-    fdk_aac
-    dbus
-    openssl
-    curl
-  ];
-
-  postInstall = ''
-    cp -r usr/share $out/
-  '';
-
-  meta = {
-    description =
-      "butt (broadcast using this tool) is an easy to use, multi OS streaming tool";
-    homepage = "https://danielnoethen.de/butt/";
-    license = lib.licenses.gpl2;
-    maintainers = with lib.maintainers; [ ehmry ];
-  };
-}