depot/third_party/nixpkgs/pkgs/development/libraries/lyra/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

30 lines
738 B
Nix

{ lib, stdenv, fetchFromGitHub, meson, ninja }:
stdenv.mkDerivation rec {
pname = "lyra";
version = "1.6.1";
src = fetchFromGitHub {
owner = "bfgroup";
repo = "lyra";
rev = version;
sha256 = "sha256-tS2SPLiKaL8C35AmOXyJPstFUfynkE/A53rurqiySbI=";
};
nativeBuildInputs = [ meson ninja ];
postPatch = "sed -i s#/usr#$out#g meson.build";
postInstall = ''
mkdir -p $out/include
cp -R $src/include/* $out/include
'';
meta = with lib; {
homepage = "https://github.com/bfgroup/Lyra";
description = "Simple to use, composable, command line parser for C++ 11 and beyond";
platforms = platforms.unix;
license = licenses.boost;
maintainers = with maintainers; [ davidtwco ];
};
}