uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
40
pkgs/applications/kde/kwave.nix
Normal file
40
pkgs/applications/kde/kwave.nix
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{ mkDerivation, lib, extra-cmake-modules, kdoctools, qtmultimedia, kcompletion, kconfig
|
||||
, kcrash, kiconthemes, kio, audiofile, libsamplerate, alsa-lib, libpulseaudio, flac, id3lib
|
||||
, libogg, libmad, libopus, libvorbis, fftw, librsvg, qtbase }:
|
||||
|
||||
mkDerivation {
|
||||
pname = "kwave";
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://kde.org/applications/en/multimedia/org.kde.kwave";
|
||||
description = "A simple media player";
|
||||
maintainers = with maintainers; [ freezeboy ];
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
broken = lib.versionOlder qtbase.version "5.14";
|
||||
};
|
||||
nativeBuildInputs = [
|
||||
extra-cmake-modules
|
||||
];
|
||||
buildInputs = [
|
||||
alsa-lib
|
||||
audiofile
|
||||
kcrash
|
||||
kdoctools
|
||||
qtmultimedia
|
||||
kcompletion
|
||||
kconfig
|
||||
kiconthemes
|
||||
kio
|
||||
libpulseaudio
|
||||
libsamplerate
|
||||
flac
|
||||
fftw
|
||||
id3lib
|
||||
libogg
|
||||
libmad
|
||||
libopus
|
||||
libvorbis
|
||||
librsvg
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue