nixpkgs/pkgs/applications/audio/schismtracker/default.nix

30 lines
787 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, autoreconfHook
, alsaLib, python, SDL }:
2014-12-01 18:58:25 +00:00
stdenv.mkDerivation rec {
pname = "schismtracker";
2020-05-15 16:23:16 +00:00
version = "20200412";
2014-12-01 18:58:25 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2020-05-15 16:23:16 +00:00
sha256 = "1n6cgjiw3vkv7a1h1nki5syyjxjb6icknr9s049w2jrag10bxssn";
2014-12-01 18:58:25 +00:00
};
2018-07-25 21:44:21 +00:00
configureFlags = [ "--enable-dependency-tracking" ];
2014-12-01 18:58:25 +00:00
nativeBuildInputs = [ autoreconfHook python ];
2014-12-01 18:58:25 +00:00
2021-01-15 13:21:58 +00:00
buildInputs = [ SDL ] ++ lib.optional stdenv.isLinux alsaLib;
meta = with lib; {
2014-12-01 18:58:25 +00:00
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" ];
maintainers = with maintainers; [ ftrvxmtrx ];
2014-12-01 18:58:25 +00:00
};
}