From aa4894e388adeeb82aaac777e4382b9d198f4d57 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Tue, 10 Dec 2024 21:41:43 +0400 Subject: [PATCH] =?UTF-8?q?sealcurses:=202023-02-06=20=E2=86=92=202024-12-?= =?UTF-8?q?02?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/by-name/se/sealcurses/package.nix | 38 ++++++++++++++++++-------- 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/se/sealcurses/package.nix b/pkgs/by-name/se/sealcurses/package.nix index ad1eb0bb276d..efc40858f655 100644 --- a/pkgs/by-name/se/sealcurses/package.nix +++ b/pkgs/by-name/se/sealcurses/package.nix @@ -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; }; }