lagrange: 1.18.3 → 1.18.4 (#363997)

This commit is contained in:
Donovan Glover
2024-12-12 01:47:10 +00:00
committed by GitHub
2 changed files with 28 additions and 14 deletions
@@ -22,13 +22,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "lagrange";
version = "1.18.3";
version = "1.18.4";
src = fetchFromGitHub {
owner = "skyjake";
repo = "lagrange";
rev = "v${finalAttrs.version}";
hash = "sha256-ewpSZD+pCr6gbzT+4lW2+6tssPNLq4rqgUx7p8IsjIY=";
hash = "sha256-Bty2TRL5blduhucYmI6x3RZVdgrY0/7Dtm5kgQ2N3ec=";
};
nativeBuildInputs = [
+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;
};
}