diff options
| author | Robert Scott <code@humanleg.org.uk> | 2021-06-01 18:13:16 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-01 18:13:16 +0100 |
| commit | dbfaab83a8b0ed29d54fd50b187ebd551f58aa26 (patch) | |
| tree | 3d0e2e992225763e3d9bd3da9e86ea614a846047 | |
| parent | Merge pull request #125229 from NixOS/backport-125225-to-release-21.05 (diff) | |
| parent | schismtracker: 20200412 -> 20210525 (diff) | |
| download | nixpkgs-dbfaab83a8b0ed29d54fd50b187ebd551f58aa26.tar.gz | |
Merge pull request #125247 from NixOS/backport-124996-to-release-21.05
[Backport release-21.05] schismtracker: 20200412 -> 20210525
| -rw-r--r-- | pkgs/applications/audio/schismtracker/default.nix | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/pkgs/applications/audio/schismtracker/default.nix b/pkgs/applications/audio/schismtracker/default.nix index 797d2c1d7337..7e276e072247 100644 --- a/pkgs/applications/audio/schismtracker/default.nix +++ b/pkgs/applications/audio/schismtracker/default.nix @@ -1,16 +1,21 @@ -{ lib, stdenv, fetchFromGitHub +{ lib +, stdenv +, fetchFromGitHub , autoreconfHook -, alsaLib, python, SDL }: +, alsaLib +, python +, SDL +}: stdenv.mkDerivation rec { pname = "schismtracker"; - version = "20200412"; + version = "20210525"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "1n6cgjiw3vkv7a1h1nki5syyjxjb6icknr9s049w2jrag10bxssn"; + sha256 = "06ybkbqry7f7lmzgwb9s7ipafshl5gdj98lcjsjkcbnywj8r9b3h"; }; configureFlags = [ "--enable-dependency-tracking" ] @@ -23,8 +28,8 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Music tracker application, free reimplementation of Impulse Tracker"; homepage = "http://schismtracker.org/"; - license = licenses.gpl2; - platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; maintainers = with maintainers; [ ftrvxmtrx ]; }; } |
