lol
1{ lib
2, stdenv
3, cmake
4, fetchFromGitHub
5, git
6}:
7
8stdenv.mkDerivation rec {
9 pname = "rapidyaml";
10 version = "0.5.0";
11
12 src = fetchFromGitHub {
13 owner = "biojppm";
14 repo = pname;
15 fetchSubmodules = true;
16 rev = "v${version}";
17 sha256 = "sha256-1/P6Szgng94UU8cPFAtOKMS+EmiwfW/IJl2UTolDU5s=";
18 };
19
20 nativeBuildInputs = [ cmake git ];
21
22 meta = with lib; {
23 description = "A library to parse and emit YAML, and do it fast.";
24 homepage = "https://github.com/biojppm/rapidyaml";
25 license = licenses.mit;
26 maintainers = with maintainers; [ martfont ];
27 };
28}