pkgs/tools/audio: remove dead code

This commit is contained in:
figsoda 2023-07-25 09:59:05 -04:00
parent adcbabfac2
commit 3ef3b08083
6 changed files with 10 additions and 15 deletions

View File

@ -1,7 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, python3Packages
, ffmpeg
, makeWrapper

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, python3Packages }:
{ lib, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "isrcsubmit";

View File

@ -7,7 +7,6 @@
, cmake
, pkg-config
, fetchFromGitHub
, git
, python3
, Accelerate
, _experimental-update-script-combinators
@ -88,7 +87,7 @@ stdenv.mkDerivation (finalAttrs: {
updateSource
updateOpenfst
];
};
};
meta = with lib; {
description = "Speech Recognition Toolkit";

View File

@ -1,7 +1,5 @@
{ lib
, stdenv
, fetchurl
, zlib
, fetchFromGitHub
, gnumake
, gcc
@ -15,7 +13,7 @@
, libevdev
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "midimonster";
version = "0.6.0";
@ -27,7 +25,7 @@ stdenv.mkDerivation rec {
owner = "cbdevnet";
rev = "f16f7db86662fcdbf45b6373257c90c824b0b4b0";
sha256 = "131zs4j9asq9xl72cbyi463xpkj064ca1s7i77q5jrwqysgy52sp";
};
};
doCheck = true;
enableParallelBuilding = true;

View File

@ -2,7 +2,6 @@
, stdenv
, pkg-config
, fetchFromGitHub
, systemd
, file
, iniparser
, ffmpeg
@ -33,9 +32,9 @@ stdenv.mkDerivation rec {
ffmpeg
libmpdclient
discount
];
];
installPhase = ''
installPhase = ''
runHook preInstall
mkdir -p $out/bin
@ -48,10 +47,10 @@ stdenv.mkDerivation rec {
'';
postPatch = ''
substituteInPlace systemd/mpd-notification.service --replace /usr $out
'';
substituteInPlace systemd/mpd-notification.service --replace /usr $out
'';
meta = with lib; {
meta = with lib; {
description = "Notifications for mpd";
homepage = "https://github.com/eworm-de/mpd-notification";
license = licenses.gpl3Plus;

View File

@ -9212,7 +9212,7 @@ with pkgs;
ispike = callPackage ../development/libraries/science/robotics/ispike { };
isrcsubmit = callPackage ../tools/audio/isrcsubmit { stdenv = gcc10StdenvCompat; };
isrcsubmit = callPackage ../tools/audio/isrcsubmit { };
isync = callPackage ../tools/networking/isync {
inherit (darwin.apple_sdk.frameworks) Security;