tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
qsynth: 0.4.4 -> 0.5.0
Peter Hoeg
8 years ago
cf52f8e7
ade98dc4
+11
-3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
qsynth
default.nix
+11
-3
pkgs/applications/audio/qsynth/default.nix
···
2
3
stdenv.mkDerivation rec {
4
name = "qsynth-${version}";
5
-
version = "0.4.4";
6
7
src = fetchurl {
8
url = "mirror://sourceforge/qsynth/${name}.tar.gz";
9
-
sha256 = "0qhfnikx3xcllkvs60kj6vcf2rwwzh31y41qkk6kwfhzgd219y8f";
10
};
11
0
0
0
0
0
0
12
nativeBuildInputs = [ cmake pkgconfig ];
13
14
buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ];
15
0
0
16
meta = with stdenv.lib; {
17
description = "Fluidsynth GUI";
18
homepage = https://sourceforge.net/projects/qsynth;
19
license = licenses.gpl2Plus;
0
20
platforms = platforms.linux;
21
-
maintainers = [ maintainers.goibhniu ];
22
};
23
}
···
2
3
stdenv.mkDerivation rec {
4
name = "qsynth-${version}";
5
+
version = "0.5.0";
6
7
src = fetchurl {
8
url = "mirror://sourceforge/qsynth/${name}.tar.gz";
9
+
sha256 = "1sr6vrz8z9r99j9xcix86lgcqldragb2ajmq1bnhr58d99sda584";
10
};
11
12
+
# cmake is looking for qsynth.desktop.in and fails if it doesn't find it
13
+
# seems like a bug and can presumable go in the next version after 0.5.0
14
+
postPatch = ''
15
+
mv src/qsynth.desktop src/qsynth.desktop.in
16
+
'';
17
+
18
nativeBuildInputs = [ cmake pkgconfig ];
19
20
buildInputs = [ alsaLib fluidsynth libjack2 qtbase qttools qtx11extras ];
21
22
+
enableParallelBuilding = true;
23
+
24
meta = with stdenv.lib; {
25
description = "Fluidsynth GUI";
26
homepage = https://sourceforge.net/projects/qsynth;
27
license = licenses.gpl2Plus;
28
+
maintainers = with maintainers; [ goibhniu ];
29
platforms = platforms.linux;
0
30
};
31
}