soundtracker: 1.0.0.1 -> 1.0.1
This commit is contained in:
parent
07543f03dd
commit
7141271410
@ -6,18 +6,21 @@
|
|||||||
, alsaLib
|
, alsaLib
|
||||||
, SDL
|
, SDL
|
||||||
, jack2
|
, jack2
|
||||||
|
, audiofile
|
||||||
, goocanvas # graphical envelope editing
|
, goocanvas # graphical envelope editing
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "soundtracker";
|
pname = "soundtracker";
|
||||||
version = "1.0.0.1";
|
version = "1.0.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
# Past releases get moved to the "old releases" directory.
|
# Past releases get moved to the "old releases" directory.
|
||||||
# Only the latest release (currently a prerelease) is at the top level.
|
# Only the latest release is at the top level.
|
||||||
url = "mirror://sourceforge/soundtracker/old%20releases/soundtracker-${version}.tar.bz2";
|
# Nonetheless, only the name of the file seems to affect which file is
|
||||||
sha256 = "1ggliswz5ngmlnrnyhv3x1arh5w77an0ww9p53cddp9aas5q11jm";
|
# downloaded, so this path should be fine both for old and current releases.
|
||||||
|
url = "mirror://sourceforge/soundtracker/soundtracker-${version}.tar.bz2";
|
||||||
|
sha256 = "0m5iiqccch6w53khpvdldz59zymw13vmwqc5ggx3sn41riwbd6ks";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -28,9 +31,12 @@ stdenv.mkDerivation rec {
|
|||||||
gtk2
|
gtk2
|
||||||
SDL
|
SDL
|
||||||
jack2
|
jack2
|
||||||
|
audiofile
|
||||||
goocanvas
|
goocanvas
|
||||||
] ++ stdenv.lib.optional stdenv.isLinux alsaLib;
|
] ++ stdenv.lib.optional stdenv.isLinux alsaLib;
|
||||||
|
|
||||||
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A music tracking tool similar in design to the DOS program FastTracker and the Amiga legend ProTracker";
|
description = "A music tracking tool similar in design to the DOS program FastTracker and the Amiga legend ProTracker";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user