sealcurses: 2023-02-06 → 2024-12-02

This commit is contained in:
Nikolay Korotkiy
2024-12-10 21:41:43 +04:00
parent 66676a8096
commit aa4894e388
+26 -12
View File
@@ -1,28 +1,42 @@
{ lib, stdenv, fetchFromGitea, cmake, pkg-config, ncurses, the-foundation }:
{
lib,
stdenv,
fetchFromGitea,
cmake,
pkg-config,
ncurses,
the-foundation,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "sealcurses";
version = "unstable-2023-02-06"; # No release yet
version = "0-unstable-2024-12-02"; # No release yet
src = fetchFromGitea {
domain = "git.skyjake.fi";
owner = "skyjake";
repo = pname;
rev = "e11026ca34b03c5ab546512f82a6f705d0c29e95";
hash = "sha256-N+Tvg2oIcfa68FC7rKuLxGgEKz1oBEEb8NGCiBuZ8y4=";
repo = "sealcurses";
rev = "310348a6b88678a47d371c7edfcc1e8c76ca1677";
hash = "sha256-SEK3w6pVrYi+h2l5RuULpORYPnm8H78lEVR01cMkku0=";
};
nativeBuildInputs = [ cmake pkg-config ];
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [ ncurses the-foundation ];
buildInputs = [
ncurses
the-foundation
];
cmakeFlags = [ "-DCMAKE_INSTALL_LIBDIR=lib" ];
meta = with lib; {
meta = {
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;
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ sikmir ];
platforms = lib.platforms.unix;
};
}