schismtracker: 20120105 -> 20190805 (#76725)
This commit is contained in:
parent
434cf0fe6a
commit
d6fcf36e47
1 changed files with 14 additions and 15 deletions
|
@ -1,30 +1,29 @@
|
||||||
{ stdenv, fetchurl, alsaLib, python, SDL }:
|
{ stdenv, fetchFromGitHub
|
||||||
|
, autoreconfHook
|
||||||
|
, alsaLib, python, SDL }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "20120105";
|
|
||||||
pname = "schismtracker";
|
pname = "schismtracker";
|
||||||
|
version = "20190805";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "http://schismtracker.org/dl/${pname}-${version}.tar.bz2";
|
owner = pname;
|
||||||
sha256 = "1ny7wv2wxm1av299wvpskall6438wjjpadphmqc7c0h6d0zg5kii";
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0qqps20vvn3rgpg8174bjrrm38gqcci2z5z4c1r1vhbccclahgsd";
|
||||||
};
|
};
|
||||||
|
|
||||||
preConfigure = ''
|
|
||||||
# Build fails on Linux with windres.
|
|
||||||
export ac_cv_prog_ac_ct_WINDRES=
|
|
||||||
'';
|
|
||||||
|
|
||||||
configureFlags = [ "--enable-dependency-tracking" ];
|
configureFlags = [ "--enable-dependency-tracking" ];
|
||||||
|
|
||||||
buildInputs = [ alsaLib python SDL ];
|
nativeBuildInputs = [ autoreconfHook python ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
buildInputs = [ alsaLib SDL ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Music tracker application, free reimplementation of Impulse Tracker";
|
description = "Music tracker application, free reimplementation of Impulse Tracker";
|
||||||
homepage = "http://schismtracker.org/";
|
homepage = "http://schismtracker.org/";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = [ "x86_64-linux" "i686-linux" ];
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||||
maintainers = [ stdenv.lib.maintainers.ftrvxmtrx ];
|
maintainers = with maintainers; [ ftrvxmtrx ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue