nixpkgs/pkgs/games/frotz/default.nix

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

49 lines
1.2 KiB
Nix
Raw Normal View History

2024-01-05 15:40:00 +01:00
{ lib
, stdenv
, fetchFromGitLab
, fetchpatch
, libao
, libmodplug
, libsamplerate
, libsndfile
, libvorbis
, ncurses
2021-05-15 14:18:41 +02:00
, which
, pkg-config
2024-01-05 15:40:00 +01:00
}:
stdenv.mkDerivation rec {
pname = "frotz";
2024-01-05 15:40:00 +01:00
version = "2.54";
src = fetchFromGitLab {
domain = "gitlab.com";
owner = "DavidGriffith";
repo = "frotz";
rev = version;
2024-01-05 15:40:00 +01:00
hash = "sha256-GvGxojD8d5GVy/d8h3q6K7KJroz2lsKbfE0F0acjBl8=";
};
2024-01-05 15:40:00 +01:00
patches = [
(fetchpatch {
url = "https://github.com/macports/macports-ports/raw/496e5b91e3b6c9dc6820d77ab60dbe400d1924ee/games/frotz/files/Makefile.patch";
extraPrefix = "";
hash = "sha256-P83ZzSi3bhncQ52Y38Q3F/7v1SJKr5614tytt862HRg=";
})
];
2021-05-15 14:18:41 +02:00
nativeBuildInputs = [ which pkg-config ];
buildInputs = [ libao libmodplug libsamplerate libsndfile libvorbis ncurses ];
2024-01-05 15:40:00 +01:00
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://davidgriffith.gitlab.io/frotz/";
changelog = "https://gitlab.com/DavidGriffith/frotz/-/raw/${version}/NEWS";
description = "A z-machine interpreter for Infocom games and other interactive fiction";
platforms = platforms.unix;
2024-01-05 15:40:00 +01:00
maintainers = with maintainers; [ nicknovitski ddelabru ];
license = licenses.gpl2;
};
}