summary refs log tree commit diff
path: root/pkgs/development/libraries/sealcurses/default.nix
blob: bde530dd9d75225bb3b842eae3185e9d4f4470db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, stdenv, fetchFromGitea, cmake, pkg-config, ncurses, the-foundation }:

stdenv.mkDerivation rec {
  pname = "sealcurses";
  version = "unstable-2022-05-18"; # No release yet

  src = fetchFromGitea {
    domain = "git.skyjake.fi";
    owner = "skyjake";
    repo = pname;
    rev = "417d77d790ede990b4c149f21c58fd13b8f273cc";
    hash = "sha256-yOrJYy9vBv5n8yK6u7tfMq56LBBw5rmhUjORINW8gxo=";
  };

  nativeBuildInputs = [ cmake pkg-config ];

  buildInputs = [ ncurses the-foundation ];

  cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ];

  meta = with lib; {
    description = "SDL Emulation and Adaptation Layer for Curses (ncursesw)";
    homepage = "https://git.skyjake.fi/skyjake/sealcurses";
    license = licenses.bsd2;
    maintainers = with maintainers; [ sikmir ];
    platforms = platforms.unix;
  };
}