unixcw: use libsForQt5, enable qt wrapper (#131816)

This commit is contained in:
Rob Brewer 2021-08-02 23:31:27 -04:00 committed by GitHub
parent fc8a8266d7
commit 77396b3e38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View file

@ -1,5 +1,6 @@
{lib, stdenv, fetchurl, libpulseaudio, alsa-lib , pkg-config, qt5}:
stdenv.mkDerivation rec {
{ lib, mkDerivation, fetchurl, libpulseaudio, alsa-lib , pkg-config, qtbase }:
mkDerivation rec {
pname = "unixcw";
version = "3.5.1";
src = fetchurl {
@ -9,11 +10,9 @@ stdenv.mkDerivation rec {
patches = [
./remove-use-of-dlopen.patch
];
buildInputs = [libpulseaudio alsa-lib pkg-config qt5.qtbase];
buildInputs = [ libpulseaudio alsa-lib pkg-config qtbase ];
CFLAGS ="-lasound -lpulse-simple";
dontWrapQtApps = true;
meta = with lib; {
description = "sound characters as Morse code on the soundcard or console speaker";
longDescription = ''

View file

@ -32045,7 +32045,7 @@ in
unicode-paracode = callPackage ../tools/misc/unicode { };
unixcw = callPackage ../applications/radio/unixcw { };
unixcw = libsForQt5.callPackage ../applications/radio/unixcw { };
vault = callPackage ../tools/security/vault { };