33 lines
795 B
Nix
33 lines
795 B
Nix
{ stdenv, fetchFromGitHub, installShellFiles, meson, ninja }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lyra";
|
|
version = "1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bfgroup";
|
|
repo = "lyra";
|
|
rev = version;
|
|
sha256 = "08g6kqaj079aq7i6c1pwj778lrr3yk188wn1byxdd6zqpwrsv71q";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = "sed -i s#/usr#$out#g meson.build";
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/include
|
|
cp -R $src/include/* $out/include
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/bfgroup/Lyra";
|
|
description = "A simple to use, composable, command line parser for C++ 11 and beyond";
|
|
platforms = platforms.linux;
|
|
license = licenses.boost;
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
};
|
|
}
|