Skip to content

Commit d194903

Browse files
yuuyinsalex-teemagnetophonSuperSandro2000
committed
carla: 2.5.1 -> 2.5.3
Co-authored-by: Alexandros Theodotou <alex@zrythm.org> Co-authored-by: Bart Brouns <bart@magnetophon.nl> Co-authored-by: Sandro Jäckel <sandro.jaeckel@gmail.com>
1 parent a305985 commit d194903

1 file changed

Lines changed: 24 additions & 9 deletions

File tree

pkgs/applications/audio/carla/default.nix

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
1-
{ lib, stdenv, fetchFromGitHub, alsa-lib, file, fluidsynth, jack2,
2-
liblo, libpulseaudio, libsndfile, pkg-config, python3Packages,
3-
which, withFrontend ? true,
4-
withQt ? true, qtbase ? null, wrapQtAppsHook ? null,
5-
withGtk2 ? true, gtk2 ? null,
6-
withGtk3 ? true, gtk3 ? null }:
1+
{ lib
2+
, stdenv
3+
, fetchFromGitHub
4+
, alsa-lib
5+
, file
6+
, fluidsynth
7+
, jack2
8+
, liblo
9+
, libpulseaudio
10+
, libsndfile
11+
, pkg-config
12+
, python3Packages
13+
, which
14+
, gtk2 ? null
15+
, gtk3 ? null
16+
, qtbase ? null
17+
, withFrontend ? true
18+
, withGtk2 ? true
19+
, withGtk3 ? true
20+
, withQt ? true
21+
, wrapQtAppsHook ? null
22+
}:
723

824
assert withFrontend -> python3Packages ? pyqt5;
925
assert withQt -> qtbase != null;
@@ -13,13 +29,13 @@ assert withGtk3 -> gtk3 != null;
1329

1430
stdenv.mkDerivation rec {
1531
pname = "carla";
16-
version = "2.5.1";
32+
version = "2.5.3";
1733

1834
src = fetchFromGitHub {
1935
owner = "falkTX";
2036
repo = pname;
2137
rev = "v${version}";
22-
sha256 = "sha256-SN+9Q5v0bv+kQcYLBJmSCd9WIGSeQuOZze8LVwF20EA=";
38+
hash = "sha256-J0C3GLdlLMkm3LHl6l3OI2rA73A6z5MMcNJ1I1T0pbI=";
2339
};
2440

2541
nativeBuildInputs = [
@@ -60,7 +76,6 @@ stdenv.mkDerivation rec {
6076
patchPythonScript "$f"
6177
done
6278
patchPythonScript "$out/share/carla/carla_settings.py"
63-
patchPythonScript "$out/share/carla/carla_database.py"
6479
6580
for program in $out/bin/*; do
6681
wrapQtApp "$program" \

0 commit comments

Comments
 (0)