nixpkgs-suyu/pkgs/development/libraries/the-foundation/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
909 B
Nix
Raw Normal View History

2022-05-04 11:51:58 +02:00
{ lib
, stdenv
, fetchFromGitea
, cmake
, pkg-config
, curl
, libunistring
, openssl
, pcre
, zlib
}:
2022-11-26 08:56:02 +01:00
stdenv.mkDerivation (finalAttrs: {
2022-05-04 11:51:58 +02:00
pname = "the-foundation";
2023-10-08 14:41:02 +02:00
version = "1.7.0";
2022-05-04 11:51:58 +02:00
src = fetchFromGitea {
domain = "git.skyjake.fi";
owner = "skyjake";
repo = "the_Foundation";
2022-11-26 08:56:02 +01:00
rev = "v${finalAttrs.version}";
2023-10-08 14:41:02 +02:00
hash = "sha256-6bEd8KzOfBse5sQ2zp+cZtEAu8xIl3GqrpxSZ7h/edI=";
2022-05-04 11:51:58 +02:00
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ curl libunistring openssl pcre zlib ];
postFixup = ''
substituteInPlace "$out"/lib/pkgconfig/the_Foundation.pc \
--replace '="''${prefix}//' '="/'
'';
2022-05-04 11:51:58 +02:00
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;
};
2022-11-26 08:56:02 +01:00
})