Merge pull request #172383 from Mindavi/treewide/remove-broken

Treewide(ish): remove long-time broken pkgs

authored by Rick van Schijndel and committed by GitHub e680b5cf b70f347c

+2 -443
-34
pkgs/applications/audio/deadbeef/plugins/infobar.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, deadbeef, gtk3, libxml2 }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "deadbeef-infobar-plugin"; 5 - version = "1.4"; 6 - 7 - src = fetchurl { 8 - url = "https://bitbucket.org/dsimbiriatin/deadbeef-infobar/downloads/deadbeef-infobar-${version}.tar.gz"; 9 - sha256 = "0c9wh3wh1hdww7v96i8cy797la06mylhfi0880k8vwh88079aapf"; 10 - }; 11 - 12 - nativeBuildInputs = [ pkg-config ]; 13 - buildInputs = [ deadbeef gtk3 libxml2 ]; 14 - 15 - buildFlags = [ "gtk3" ]; 16 - 17 - installPhase = '' 18 - runHook preInstall 19 - 20 - mkdir -p $out/lib/deadbeef 21 - cp gtk3/ddb_infobar_gtk3.so $out/lib/deadbeef 22 - 23 - runHook postInstall 24 - ''; 25 - 26 - meta = with lib; { 27 - broken = true; # crashes DeaDBeeF and is abandoned (https://bitbucket.org/dsimbiriatin/deadbeef-infobar/issues/38/infobar-causes-deadbeef-180-to-crash) 28 - description = "DeaDBeeF Infobar Plugin"; 29 - homepage = "https://bitbucket.org/dsimbiriatin/deadbeef-infobar"; 30 - license = licenses.gpl2Plus; 31 - maintainers = [ maintainers.jtojnar ]; 32 - platforms = platforms.linux; 33 - }; 34 - }
···
-34
pkgs/applications/graphics/rapcad/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, cgal, boost, gmp, mpfr, flex, bison, dxflib, readline 2 - , qtbase, qmake, libGLU 3 - }: 4 - 5 - stdenv.mkDerivation rec { 6 - version = "0.9.8"; 7 - pname = "rapcad"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "gilesbathgate"; 11 - repo = "rapcad"; 12 - rev = "v${version}"; 13 - sha256 = "0a0sqf6h227zalh0jrz6jpm8iwji7q3i31plqk76i4qm9vsgrhir"; 14 - }; 15 - 16 - patches = [ 17 - (fetchurl { 18 - url = "https://github.com/GilesBathgate/RapCAD/commit/278a8d6c7b8fe08f867002528bbab4a6319a7bb6.patch"; 19 - sha256 = "1vvkyf0wg79zdzs5zlggfrr1lrp1x75dglzl0mspnycwldsdwznj"; 20 - name = "disable-QVector-qHash.patch"; 21 - }) 22 - ]; 23 - 24 - nativeBuildInputs = [ qmake ]; 25 - buildInputs = [ qtbase cgal boost gmp mpfr flex bison dxflib readline libGLU ]; 26 - 27 - meta = with lib; { 28 - license = licenses.gpl3; 29 - maintainers = [ maintainers.raskin ]; 30 - platforms = platforms.linux; 31 - description = "Constructive solid geometry package"; 32 - broken = true; # 2018-04-11 33 - }; 34 - }
···
-115
pkgs/applications/misc/multibootusb/default.nix
··· 1 - { fetchFromGitHub, libxcb, mtools, p7zip, parted, procps, qemu, unzip, zip, 2 - coreutils, gnugrep, which, gnused, e2fsprogs, autoPatchelfHook, gptfdisk, 3 - python3Packages, qt5, runtimeShell, lib, util-linux, wrapQtAppsHook }: 4 - 5 - # Note: Multibootusb is tricky to maintain. It relies on the 6 - # $PYTHONPATH variable containing some of their code, so that 7 - # something like: 8 - # 9 - # from scripts import config 10 - # 11 - # works. It also relies on the current directory to find some runtime 12 - # resources thanks to a use of __file__. 13 - # 14 - # https://github.com/mbusb/multibootusb/blob/0d34d70c3868f1d7695cfd141141b17c075de967/scripts/osdriver.py#L59 15 - 16 - python3Packages.buildPythonApplication rec { 17 - pname = "multibootusb"; 18 - name = "${pname}-${version}"; 19 - version = "9.2.0"; 20 - 21 - nativeBuildInputs = [ 22 - wrapQtAppsHook 23 - autoPatchelfHook 24 - unzip 25 - zip 26 - ]; 27 - 28 - runTimeDeps = [ 29 - coreutils 30 - gnugrep 31 - which 32 - parted 33 - util-linux 34 - qemu 35 - p7zip 36 - gnused 37 - mtools 38 - procps 39 - e2fsprogs 40 - gptfdisk 41 - ]; 42 - 43 - buildInputs = [ 44 - libxcb 45 - python3Packages.python 46 - qt5.full 47 - ]; 48 - 49 - src = fetchFromGitHub { 50 - owner = "mbusb"; 51 - repo = pname; 52 - rev = "v${version}"; 53 - 54 - sha256 = "0wlan0cp6c2i0nahixgpmkm0h4n518gj8rc515d579pqqp91p2h3"; 55 - }; 56 - 57 - # Tests can't run inside the NixOS sandbox 58 - # "Failed to connect to socket /run/dbus/system_bus_socket: No such file or directory" 59 - doCheck = false; 60 - 61 - pythonPath = with python3Packages; [ 62 - dbus-python 63 - pyqt5 64 - pytest-shutil 65 - pyudev 66 - six 67 - ]; 68 - 69 - # multibootusb ships zips with various versions of syslinux, we need to patchelf them 70 - postPatch = '' 71 - for zip in $(find . -name "*.zip"); do 72 - zip=$(readlink -f $zip) 73 - target="$(mktemp -d)" 74 - pushd $target 75 - unzip $zip 76 - rm $zip 77 - autoPatchelf . 78 - zip -r $zip * 79 - popd 80 - done 81 - ''; 82 - 83 - postInstall = '' 84 - # This script doesn't work and it doesn't add much anyway 85 - rm $out/bin/multibootusb-pkexec 86 - 87 - # The installed data isn't sufficient for whatever reason, missing gdisk/gdisk.exe 88 - mkdir -p "$out/share/${pname}" 89 - cp -r data "$out/share/${pname}/data" 90 - ''; 91 - 92 - preFixup = '' 93 - makeWrapperArgs+=( 94 - # Firstly, add all necessary QT variables 95 - "''${qtWrapperArgs[@]}" 96 - 97 - # Then, add the installed scripts/ directory to the python path 98 - --prefix "PYTHONPATH" ":" "$out/lib/${python3Packages.python.libPrefix}/site-packages" 99 - 100 - # Add some runtime dependencies 101 - --prefix "PATH" ":" "${lib.makeBinPath runTimeDeps}" 102 - 103 - # Finally, move to directory that contains data 104 - --chdir "$out/share/${pname}" 105 - ) 106 - ''; 107 - 108 - meta = with lib; { 109 - description = "Multiboot USB creator for Linux live disks"; 110 - homepage = "http://multibootusb.org/"; 111 - license = licenses.gpl2; 112 - maintainers = []; # Looking for a maintainer! 113 - broken = true; # "name 'config' is not defined", added 2021-02-06 114 - }; 115 - }
···
-23
pkgs/development/libraries/libdap/default.nix
··· 1 - { lib, stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }: 2 - 3 - stdenv.mkDerivation rec { 4 - version = "3.20.6"; 5 - pname = "libdap"; 6 - 7 - nativeBuildInputs = [ bison flex ]; 8 - buildInputs = [ libuuid curl libxml2 ]; 9 - 10 - src = fetchurl { 11 - url = "https://www.opendap.org/pub/source/${pname}-${version}.tar.gz"; 12 - sha256 = "0jn5bi8k2lq6mmrsw7r1r5aviyf8gb39b2iy20v4kpkj5napzk1m"; 13 - }; 14 - 15 - meta = with lib; { 16 - description = "A C++ SDK which contains an implementation of DAP"; 17 - homepage = "https://www.opendap.org/software/libdap"; 18 - license = licenses.lgpl2; 19 - maintainers = [ maintainers.bzizou ]; 20 - platforms = platforms.linux; 21 - broken = true; 22 - }; 23 - }
···
-27
pkgs/development/libraries/openbr/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, opencv, qtbase, qtsvg }: 2 - 3 - stdenv.mkDerivation { 4 - 5 - version = "0.5"; 6 - pname = "openbr"; 7 - 8 - src = fetchFromGitHub { 9 - owner = "biometrics"; 10 - repo = "openbr"; 11 - rev = "cc364a89a86698cd8d3052f42a3cb520c929b325"; 12 - sha256 = "12y00cf5dlzp9ciiwbihf6xhlkdxpydhscv5hwp83qjdllid9rrz"; 13 - }; 14 - 15 - buildInputs = [ opencv qtbase qtsvg ]; 16 - 17 - nativeBuildInputs = [ cmake ]; 18 - 19 - meta = { 20 - description = "Open Source Biometric Recognition"; 21 - homepage = "http://openbiometrics.org/"; 22 - license = lib.licenses.asl20; 23 - maintainers = with lib.maintainers; [flosse]; 24 - platforms = with lib.platforms; linux; 25 - broken = true; 26 - }; 27 - }
···
-57
pkgs/development/tools/vogl/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub 2 - , cmake, git, pkg-config, wget, zip 3 - , qtbase, qtx11extras 4 - , libdwarf, libjpeg_turbo, libunwind, xz, tinyxml, libX11 5 - , SDL2, SDL2_gfx, SDL2_image, SDL2_ttf 6 - , freeglut, libGLU 7 - , fetchpatch 8 - }: 9 - 10 - mkDerivation { 11 - pname = "vogl"; 12 - version = "2016-05-13"; 13 - 14 - src = fetchFromGitHub { 15 - owner = "deepfire"; 16 - repo = "vogl"; 17 - rev = "cbc5f1853e294b363f16c4e00b3e0c49dbf74559"; 18 - sha256 = "17gwd73x3lnqv6ccqs48pzqwbzjhbn41c0x0l5zzirhiirb3yh0n"; 19 - }; 20 - 21 - patches = [ 22 - (fetchpatch { 23 - name = "fix-qt59.patch"; 24 - url = "https://github.com/ValveSoftware/vogl/commit/be3d85f.patch"; 25 - sha256 = "1yh4jd35mds337waqxdw3w22w7ghn05b5jm7fb4iihl39mhq6qyv"; 26 - }) 27 - ]; 28 - 29 - nativeBuildInputs = [ cmake pkg-config ]; 30 - 31 - buildInputs = [ 32 - git wget zip 33 - qtbase qtx11extras 34 - libdwarf libjpeg_turbo libunwind xz tinyxml libX11 35 - SDL2 SDL2_gfx SDL2_image SDL2_ttf 36 - freeglut libGLU 37 - ]; 38 - 39 - dontUseCmakeBuildDir = true; 40 - preConfigure = '' 41 - cmakeDir=$PWD 42 - mkdir -p vogl/vogl_build/release64 && cd $_ 43 - ''; 44 - cmakeFlags = [ 45 - "-DCMAKE_VERBOSE=On" 46 - "-DBUILD_X64=On" 47 - ]; 48 - 49 - meta = with lib; { 50 - description = "OpenGL capture / playback debugger"; 51 - homepage = "https://github.com/ValveSoftware/vogl"; 52 - license = licenses.mit; 53 - maintainers = [ maintainers.deepfire ]; 54 - platforms = [ "x86_64-linux" "i686-linux" ]; 55 - broken = true; 56 - }; 57 - }
···
+2 -1
pkgs/games/ue4/default.nix
··· 76 homepage = "https://www.unrealengine.com/what-is-unreal-engine-4"; 77 license = lib.licenses.unfree; 78 platforms = lib.platforms.linux; 79 - maintainers = [ lib.maintainers.puffnfresh ]; 80 broken = true; 81 }; 82 }
··· 76 homepage = "https://www.unrealengine.com/what-is-unreal-engine-4"; 77 license = lib.licenses.unfree; 78 platforms = lib.platforms.linux; 79 + maintainers = [ ]; 80 + # See issue https://github.com/NixOS/nixpkgs/issues/17162 81 broken = true; 82 }; 83 }
-44
pkgs/misc/cups/drivers/samsung/4.00.39/default.nix
··· 1 - # Tested on linux-x86_64. Might work on linux-i386. Probably won't work on anything else. 2 - 3 - # To use this driver in NixOS, add it to printing.drivers in configuration.nix. 4 - # configuration.nix might look like this when you're done: 5 - # { pkgs, ... }: { 6 - # printing = { 7 - # enable = true; 8 - # drivers = [ pkgs.samsungUnifiedLinuxDriver ]; 9 - # }; 10 - # (more stuff) 11 - # } 12 - # (This advice was tested on 2010 August 2.) 13 - 14 - { lib, stdenv, fetchurl, cups, gcc, ghostscript, glibc, patchelf }: 15 - 16 - # Do not bump lightly! Visit <http://www.bchemnet.com/suldr/supported.html> 17 - # to see what will break when upgrading. Consider a new versioned attribute. 18 - let 19 - cups' = lib.getLib cups; 20 - in stdenv.mkDerivation rec { 21 - pname = "samsung-UnifiedLinuxDriver"; 22 - version = "4.00.39"; 23 - 24 - src = fetchurl { 25 - url = "http://www.bchemnet.com/suldr/driver/UnifiedLinuxDriver-${version}.tar.gz"; 26 - sha256 = "144b4xggbzjfq7ga5nza7nra2cf6qn63z5ls7ba1jybkx1vm369k"; 27 - }; 28 - 29 - nativeBuildInputs = [ patchelf ]; 30 - buildInputs = [ cups' gcc ghostscript glibc ]; 31 - 32 - inherit gcc ghostscript glibc; 33 - cups = cups'; 34 - 35 - builder = ./builder.sh; 36 - 37 - meta = with lib; { 38 - description = "Samsung's Linux printing drivers; includes binaries without source code"; 39 - homepage = "http://www.samsung.com/"; 40 - license = licenses.unfree; 41 - platforms = platforms.linux; 42 - broken = true; # libscmssc.so and libmfp.so can't find their library dependencies at run-time 43 - }; 44 - }
···
-49
pkgs/tools/security/neopg/default.nix
··· 1 - { lib, stdenv 2 - , fetchFromGitHub 3 - , cmake 4 - , sqlite 5 - , botan2 6 - , boost 7 - , curl 8 - , gettext 9 - , pkg-config 10 - , libusb1 11 - , gnutls }: 12 - 13 - stdenv.mkDerivation rec { 14 - pname = "neopg"; 15 - version = "0.0.6"; 16 - 17 - src = fetchFromGitHub { 18 - owner = "das-labor"; 19 - repo = "neopg"; 20 - rev = "v${version}"; 21 - sha256 = "15xp5w046ix59cfrhh8ka4camr0d8qqw643g184sqrcqwpk7nbrx"; 22 - fetchSubmodules = true; 23 - }; 24 - 25 - nativeBuildInputs = [ cmake gettext pkg-config ]; 26 - 27 - buildInputs = [ sqlite botan2 boost curl libusb1 gnutls ]; 28 - 29 - doCheck = true; 30 - checkTarget = "test"; 31 - dontUseCmakeBuildDir = true; 32 - 33 - preCheck = '' 34 - export LD_LIBRARY_PATH=$LD_LIBRARY_PATH''${LD_LIBRARY_PATH:+:}$(pwd)/3rdparty/googletest/googletest:$(pwd)/neopg 35 - ''; 36 - 37 - meta = with lib; { 38 - homepage = "https://neopg.io/"; 39 - description = "Modern replacement for GnuPG 2"; 40 - license = licenses.gpl3; 41 - longDescription = '' 42 - NeoPG starts as an opiniated fork of GnuPG 2 to clean up the code and make it easier to develop. 43 - It is written in C++11. 44 - ''; 45 - maintainers = with maintainers; [ erictapen ]; 46 - platforms = platforms.linux; 47 - broken = true; # fails to build with recent versions of botan. https://github.com/das-labor/neopg/issues/98 48 - }; 49 - }
···
-44
pkgs/tools/typesetting/pdftk/legacy.nix
··· 1 - { fetchurl, lib, stdenv, gcj, unzip }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "pdftk"; 5 - version = "2.02"; 6 - 7 - src = fetchurl { 8 - url = "https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/pdftk-${version}-src.zip"; 9 - sha256 = "1hdq6zm2dx2f9h7bjrp6a1hfa1ywgkwydp14i2sszjiszljnm3qi"; 10 - }; 11 - 12 - nativeBuildInputs = [ gcj unzip ]; 13 - 14 - hardeningDisable = [ "fortify" "format" ]; 15 - 16 - preBuild = '' 17 - cd pdftk 18 - sed -e 's@/usr/bin/@@g' -i Makefile.* 19 - NIX_ENFORCE_PURITY= \ 20 - make \ 21 - LIBGCJ="${gcj.cc}/share/java/libgcj-${gcj.cc.version}.jar" \ 22 - GCJ=gcj GCJH=gcjh GJAR=gjar \ 23 - -iC ../java all 24 - ''; 25 - 26 - # Makefile.Debian has almost fitting defaults 27 - makeFlags = [ "-f" "Makefile.Debian" "VERSUFF=" ]; 28 - 29 - installPhase = '' 30 - mkdir -p $out/bin $out/share/man/man1 31 - cp pdftk $out/bin 32 - cp ../pdftk.1 $out/share/man/man1 33 - ''; 34 - 35 - 36 - meta = { 37 - description = "Simple tool for doing everyday things with PDF documents"; 38 - homepage = "https://www.pdflabs.com/tools/pdftk-server/"; 39 - license = lib.licenses.gpl2; 40 - maintainers = with lib.maintainers; [ raskin ]; 41 - platforms = with lib.platforms; linux; 42 - broken = true; # Broken on Hydra since 2020-08-24 43 - }; 44 - }
···
-13
pkgs/top-level/all-packages.nix
··· 8535 8536 ndisc6 = callPackage ../tools/networking/ndisc6 { }; 8537 8538 - neopg = callPackage ../tools/security/neopg { }; 8539 - 8540 netboot = callPackage ../tools/networking/netboot {}; 8541 8542 netbootxyz-efi = callPackage ../tools/misc/netbootxyz-efi { }; ··· 18331 18332 libdaemon = callPackage ../development/libraries/libdaemon { }; 18333 18334 - libdap = callPackage ../development/libraries/libdap { }; 18335 - 18336 libdatrie = callPackage ../development/libraries/libdatrie { }; 18337 18338 libdazzle = callPackage ../development/libraries/libdazzle { }; ··· 25725 25726 deadbeefPlugins = { 25727 headerbar-gtk3 = callPackage ../applications/audio/deadbeef/plugins/headerbar-gtk3.nix { }; 25728 - infobar = callPackage ../applications/audio/deadbeef/plugins/infobar.nix { }; 25729 lyricbar = callPackage ../applications/audio/deadbeef/plugins/lyricbar.nix { }; 25730 mpris2 = callPackage ../applications/audio/deadbeef/plugins/mpris2.nix { }; 25731 statusnotifier = callPackage ../applications/audio/deadbeef/plugins/statusnotifier.nix { }; ··· 26746 mi2ly = callPackage ../applications/audio/mi2ly {}; 26747 26748 moe = callPackage ../applications/editors/moe { }; 26749 - 26750 - multibootusb = libsForQt514.callPackage ../applications/misc/multibootusb { qt5 = qt514; }; 26751 26752 praat = callPackage ../applications/audio/praat { }; 26753 ··· 28857 pdftk = callPackage ../tools/typesetting/pdftk { 28858 jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 28859 }; 28860 - pdftk-legacy = lowPrio (callPackage ../tools/typesetting/pdftk/legacy.nix { }); 28861 pdfgrep = callPackage ../tools/typesetting/pdfgrep { }; 28862 28863 pdfpc = callPackage ../applications/misc/pdfpc { ··· 29266 railcar = callPackage ../applications/virtualization/railcar {}; 29267 29268 raiseorlaunch = callPackage ../applications/misc/raiseorlaunch {}; 29269 - 29270 - rapcad = libsForQt514.callPackage ../applications/graphics/rapcad { boost = boost159; }; 29271 29272 rapid-photo-downloader = libsForQt5.callPackage ../applications/graphics/rapid-photo-downloader { }; 29273 ··· 30373 vnstat = callPackage ../applications/networking/vnstat { }; 30374 30375 vocal = callPackage ../applications/audio/vocal { }; 30376 - 30377 - vogl = libsForQt5.callPackage ../development/tools/vogl { }; 30378 30379 volnoti = callPackage ../applications/misc/volnoti { }; 30380 ··· 34512 34513 samsung-unified-linux-driver_1_00_36 = callPackage ../misc/cups/drivers/samsung/1.00.36 { }; 34514 samsung-unified-linux-driver_1_00_37 = callPackage ../misc/cups/drivers/samsung/1.00.37.nix { }; 34515 - samsung-unified-linux-driver_4_00_39 = callPackage ../misc/cups/drivers/samsung/4.00.39 { }; 34516 samsung-unified-linux-driver_4_01_17 = callPackage ../misc/cups/drivers/samsung/4.01.17.nix { }; 34517 samsung-unified-linux-driver = res.samsung-unified-linux-driver_4_01_17; 34518
··· 8535 8536 ndisc6 = callPackage ../tools/networking/ndisc6 { }; 8537 8538 netboot = callPackage ../tools/networking/netboot {}; 8539 8540 netbootxyz-efi = callPackage ../tools/misc/netbootxyz-efi { }; ··· 18329 18330 libdaemon = callPackage ../development/libraries/libdaemon { }; 18331 18332 libdatrie = callPackage ../development/libraries/libdatrie { }; 18333 18334 libdazzle = callPackage ../development/libraries/libdazzle { }; ··· 25721 25722 deadbeefPlugins = { 25723 headerbar-gtk3 = callPackage ../applications/audio/deadbeef/plugins/headerbar-gtk3.nix { }; 25724 lyricbar = callPackage ../applications/audio/deadbeef/plugins/lyricbar.nix { }; 25725 mpris2 = callPackage ../applications/audio/deadbeef/plugins/mpris2.nix { }; 25726 statusnotifier = callPackage ../applications/audio/deadbeef/plugins/statusnotifier.nix { }; ··· 26741 mi2ly = callPackage ../applications/audio/mi2ly {}; 26742 26743 moe = callPackage ../applications/editors/moe { }; 26744 26745 praat = callPackage ../applications/audio/praat { }; 26746 ··· 28850 pdftk = callPackage ../tools/typesetting/pdftk { 28851 jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731 28852 }; 28853 pdfgrep = callPackage ../tools/typesetting/pdfgrep { }; 28854 28855 pdfpc = callPackage ../applications/misc/pdfpc { ··· 29258 railcar = callPackage ../applications/virtualization/railcar {}; 29259 29260 raiseorlaunch = callPackage ../applications/misc/raiseorlaunch {}; 29261 29262 rapid-photo-downloader = libsForQt5.callPackage ../applications/graphics/rapid-photo-downloader { }; 29263 ··· 30363 vnstat = callPackage ../applications/networking/vnstat { }; 30364 30365 vocal = callPackage ../applications/audio/vocal { }; 30366 30367 volnoti = callPackage ../applications/misc/volnoti { }; 30368 ··· 34500 34501 samsung-unified-linux-driver_1_00_36 = callPackage ../misc/cups/drivers/samsung/1.00.36 { }; 34502 samsung-unified-linux-driver_1_00_37 = callPackage ../misc/cups/drivers/samsung/1.00.37.nix { }; 34503 samsung-unified-linux-driver_4_01_17 = callPackage ../misc/cups/drivers/samsung/4.01.17.nix { }; 34504 samsung-unified-linux-driver = res.samsung-unified-linux-driver_4_01_17; 34505
-2
pkgs/top-level/qt5-packages.nix
··· 154 155 mlt = callPackage ../development/libraries/mlt/qt-5.nix { }; 156 157 - openbr = callPackage ../development/libraries/openbr { }; 158 - 159 phonon = callPackage ../development/libraries/phonon { }; 160 161 phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix { };
··· 154 155 mlt = callPackage ../development/libraries/mlt/qt-5.nix { }; 156 157 phonon = callPackage ../development/libraries/phonon { }; 158 159 phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix { };