f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
29 lines
603 B
Nix
29 lines
603 B
Nix
{ lib
|
|
, stdenv
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, git
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rapidyaml";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "biojppm";
|
|
repo = pname;
|
|
fetchSubmodules = true;
|
|
rev = "v${version}";
|
|
hash = "sha256-VpREG75d+Rmfu8B2VTWueJtfEZwKxGUFb8E3OwVy1L4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake git ];
|
|
|
|
meta = with lib; {
|
|
description = "Library to parse and emit YAML, and do it fast";
|
|
homepage = "https://github.com/biojppm/rapidyaml";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|