the-foundation: init at 1.4.0

main
Nikolay Korotkiy 2 years ago
parent 9720f3d781
commit daace980f6
No known key found for this signature in database
GPG Key ID: D1DE6D7F693663A5
  1. 36
      pkgs/development/libraries/the-foundation/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,36 @@
{ lib
, stdenv
, fetchFromGitea
, cmake
, pkg-config
, curl
, libunistring
, openssl
, pcre
, zlib
}:
stdenv.mkDerivation rec {
pname = "the-foundation";
version = "1.4.0";
src = fetchFromGitea {
domain = "git.skyjake.fi";
owner = "skyjake";
repo = "the_Foundation";
rev = "v${version}";
hash = "sha256-IHwWJryG4HcrW9Bf8KJrisCrbF86RBQj6Xl1HTmcr6k=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ curl libunistring openssl pcre zlib ];
meta = with lib; {
description = "Opinionated C11 library for low-level functionality";
homepage = "https://git.skyjake.fi/skyjake/the_Foundation";
license = licenses.bsd2;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}

@ -20835,6 +20835,8 @@ with pkgs;
tet = callPackage ../development/tools/misc/tet { };
the-foundation = callPackage ../development/libraries/the-foundation { };
theft = callPackage ../development/libraries/theft { };
thrift = callPackage ../development/libraries/thrift { };

Loading…
Cancel
Save