qtads: init at 2.1.99.2019-04-12

This version is much easier to package than the last 2016 release.
It self-describes as 2.1.99 in Help > About.
https://github.com/realnc/qtads/issues/8
This commit is contained in:
Orivej Desh 2019-12-09 00:50:14 +00:00
parent 5bd1bd08ed
commit 571c310007
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkgconfig, qmake
, SDL2, fluidsynth, libsndfile, libvorbis, mpg123, qtbase
}:
stdenv.mkDerivation rec {
pname = "qtads";
version = "2.1.99.2019-04-12";
src = fetchFromGitHub {
owner = "realnc";
repo = pname;
rev = "43289a830a18c66a293c2b1ee75a08e92e8dd5dc";
sha256 = "0zscf6nmjjc4i7c38iy8znv2s453xc49gn7knyi3g1l6iinjwbx7";
};
nativeBuildInputs = [ pkgconfig qmake ];
buildInputs = [ SDL2 fluidsynth libsndfile libvorbis mpg123 qtbase ];
meta = with lib; {
homepage = https://realnc.github.io/qtads/;
description = "Multimedia interpreter for TADS games";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ orivej ];
};
}

View file

@ -22811,6 +22811,8 @@ in
gshogi = python3Packages.callPackage ../games/gshogi {};
qtads = qt5.callPackage ../games/qtads { };
gtetrinet = callPackage ../games/gtetrinet {
inherit (gnome2) GConf libgnome libgnomeui;
};