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
79
pkgs/applications/audio/qtractor/default.nix
Normal file
79
pkgs/applications/audio/qtractor/default.nix
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
{ alsa-lib
|
||||
, aubio
|
||||
, cmake
|
||||
, dssi
|
||||
, fetchurl
|
||||
, flac
|
||||
, libjack2
|
||||
, ladspaH
|
||||
, ladspaPlugins
|
||||
, liblo
|
||||
, libmad
|
||||
, libsamplerate
|
||||
, libsndfile
|
||||
, libtool
|
||||
, libvorbis
|
||||
, lilv
|
||||
, lv2
|
||||
, mkDerivation
|
||||
, opusfile
|
||||
, pkg-config
|
||||
, qttools
|
||||
, qtbase
|
||||
, rubberband
|
||||
, serd
|
||||
, sord
|
||||
, sratom
|
||||
, lib
|
||||
, suil
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "qtractor";
|
||||
version = "0.9.25";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
||||
sha256 = "sha256-cKXHH7rugTJ5D7MDJmr/fX6p209wyGMQvSLbv5T0KXU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
libtool
|
||||
pkg-config
|
||||
qttools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
alsa-lib
|
||||
aubio
|
||||
dssi
|
||||
flac
|
||||
libjack2
|
||||
ladspaH
|
||||
ladspaPlugins
|
||||
liblo
|
||||
libmad
|
||||
libsamplerate
|
||||
libsndfile
|
||||
libtool
|
||||
libvorbis
|
||||
lilv
|
||||
lv2
|
||||
opusfile
|
||||
qtbase
|
||||
rubberband
|
||||
serd
|
||||
sord
|
||||
sratom
|
||||
suil
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Audio/MIDI multi-track sequencer";
|
||||
homepage = "https://qtractor.sourceforge.io";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ goibhniu ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue