sealcurses: init at unstable-2022-04-28

This commit is contained in:
Nikolay Korotkiy 2022-05-06 16:28:33 +03:00
parent daace980f6
commit 08d33e379b
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, stdenv, fetchFromGitea, cmake, pkg-config, ncurses, the-foundation }:
stdenv.mkDerivation rec {
pname = "sealcurses";
version = "unstable-2022-04-28"; # No release yet
src = fetchFromGitea {
domain = "git.skyjake.fi";
owner = "skyjake";
repo = pname;
rev = "abf27cfd2567a0765aaa115cabab0abb7f862253";
hash = "sha256-c4zi/orHyr1hkuEisqZ9V8SaiH1IoxIbeGMrLBEkZ0A=";
};
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;
};
}

View file

@ -20483,6 +20483,8 @@ with pkgs;
selinux-sandbox = callPackage ../os-specific/linux/selinux-sandbox { };
sealcurses = callPackage ../development/libraries/sealcurses { };
seasocks = callPackage ../development/libraries/seasocks { };
serd = callPackage ../development/libraries/serd {};