about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorEmily Trau <13267947+emilytrau@users.noreply.github.com>2023-12-02 00:12:07 +1100
committerGitHub <noreply@github.com>2023-12-02 00:12:07 +1100
commit91050ea1e57e50388fa87a3302ba12d188ef723a (patch)
tree01edb73498db00f8092989e17155fd446881ea22 /pkgs/applications
parentca9b6bc0a755702153910fd8fe7228517957de5d (diff)
parent69b6e4df0ac1c348a8d8baf599ecd0f54f71817e (diff)
downloadnixlib-91050ea1e57e50388fa87a3302ba12d188ef723a.tar
nixlib-91050ea1e57e50388fa87a3302ba12d188ef723a.tar.gz
nixlib-91050ea1e57e50388fa87a3302ba12d188ef723a.tar.bz2
nixlib-91050ea1e57e50388fa87a3302ba12d188ef723a.tar.lz
nixlib-91050ea1e57e50388fa87a3302ba12d188ef723a.tar.xz
nixlib-91050ea1e57e50388fa87a3302ba12d188ef723a.tar.zst
nixlib-91050ea1e57e50388fa87a3302ba12d188ef723a.zip
Merge pull request #271211 from ehmry/butt
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 ];
-  };
-}