soundtracker: 1.0.1 -> 1.0.2.1

+3 -5
+3 -5
pkgs/applications/audio/soundtracker/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "soundtracker"; 15 - version = "1.0.1"; 15 + version = "1.0.2.1"; 16 16 17 17 src = fetchurl { 18 18 # Past releases get moved to the "old releases" directory. 19 19 # Only the latest release is at the top level. 20 20 # Nonetheless, only the name of the file seems to affect which file is 21 21 # downloaded, so this path should be fine both for old and current releases. 22 - url = "mirror://sourceforge/soundtracker/soundtracker-${version}.tar.bz2"; 23 - sha256 = "0m5iiqccch6w53khpvdldz59zymw13vmwqc5ggx3sn41riwbd6ks"; 22 + url = "mirror://sourceforge/soundtracker/soundtracker-${version}.tar.xz"; 23 + sha256 = "0nh0dwz8nldc040q6n06vlazhss8ms42r2dffhjcrqj3hbrvfx82"; 24 24 }; 25 25 26 26 nativeBuildInputs = [ ··· 34 34 audiofile 35 35 goocanvas 36 36 ] ++ lib.optional stdenv.isLinux alsa-lib; 37 - 38 - hardeningDisable = [ "format" ]; 39 37 40 38 meta = with lib; { 41 39 description = "A music tracking tool similar in design to the DOS program FastTracker and the Amiga legend ProTracker";