Merge pull request #124996 from prusnak/schismtracker

authored by

Sandro and committed by
GitHub
258c8825 6640040e

+11 -6
+11 -6
pkgs/applications/audio/schismtracker/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 2 4 , autoreconfHook 3 - , alsaLib, python, SDL }: 5 + , alsaLib 6 + , python 7 + , SDL 8 + }: 4 9 5 10 stdenv.mkDerivation rec { 6 11 pname = "schismtracker"; 7 - version = "20200412"; 12 + version = "20210525"; 8 13 9 14 src = fetchFromGitHub { 10 15 owner = pname; 11 16 repo = pname; 12 17 rev = version; 13 - sha256 = "1n6cgjiw3vkv7a1h1nki5syyjxjb6icknr9s049w2jrag10bxssn"; 18 + sha256 = "06ybkbqry7f7lmzgwb9s7ipafshl5gdj98lcjsjkcbnywj8r9b3h"; 14 19 }; 15 20 16 21 configureFlags = [ "--enable-dependency-tracking" ] ··· 23 28 meta = with lib; { 24 29 description = "Music tracker application, free reimplementation of Impulse Tracker"; 25 30 homepage = "http://schismtracker.org/"; 26 - license = licenses.gpl2; 27 - platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; 31 + license = licenses.gpl2Plus; 32 + platforms = platforms.unix; 28 33 maintainers = with maintainers; [ ftrvxmtrx ]; 29 34 }; 30 35 }