1 { lib, stdenv, fetchFromGitea, cmake, pkg-config, ncurses, the-foundation }:
3 stdenv.mkDerivation rec {
5 version = "unstable-2023-02-06"; # No release yet
8 domain = "git.skyjake.fi";
11 rev = "e11026ca34b03c5ab546512f82a6f705d0c29e95";
12 hash = "sha256-N+Tvg2oIcfa68FC7rKuLxGgEKz1oBEEb8NGCiBuZ8y4=";
15 nativeBuildInputs = [ cmake pkg-config ];
17 buildInputs = [ ncurses the-foundation ];
19 cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ];
22 description = "SDL Emulation and Adaptation Layer for Curses (ncursesw)";
23 homepage = "https://git.skyjake.fi/skyjake/sealcurses";
24 license = licenses.bsd2;
25 maintainers = with maintainers; [ sikmir ];
26 platforms = platforms.unix;