nixpkgs/pkgs/games/qtads/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
724 B
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub, fetchpatch, pkg-config, qmake
, SDL2, fluidsynth, libsndfile, libvorbis, mpg123, qtbase
}:
2020-02-16 23:08:52 +00:00
mkDerivation rec {
pname = "qtads";
2022-07-29 19:58:57 +00:00
version = "3.3.0";
src = fetchFromGitHub {
owner = "realnc";
repo = pname;
2020-02-16 23:08:52 +00:00
rev = "v${version}";
2022-07-29 19:58:57 +00:00
sha256 = "sha256-CndN8l7GGIekfbz7OrTYIElL7SxRxEkiNiZP2NHuxOg=";
};
nativeBuildInputs = [ pkg-config 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 ];
};
}