biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / games / qtads / default.nix
blob2d5ae31814e022a964beed9e7b9abf678a632dcf
1 { lib, mkDerivation, fetchFromGitHub, pkg-config, qmake
2 , SDL2, fluidsynth, libsndfile, libvorbis, mpg123, qtbase
3 }:
5 mkDerivation rec {
6   pname = "qtads";
7   version = "3.4.0";
9   src = fetchFromGitHub {
10     owner = "realnc";
11     repo = pname;
12     rev = "v${version}";
13     sha256 = "sha256-KIqufpvl7zeUtDBXUOAZxBIbfv+s51DoSaZr3jol+bw=";
14   };
16   nativeBuildInputs = [ pkg-config qmake ];
18   buildInputs = [ SDL2 fluidsynth libsndfile libvorbis mpg123 qtbase ];
20   meta = with lib; {
21     homepage = "https://realnc.github.io/qtads/";
22     description = "Multimedia interpreter for TADS games";
23     mainProgram = "qtads";
24     license = licenses.gpl3Plus;
25     platforms = platforms.linux;
26     maintainers = with maintainers; [ orivej ];
27   };