My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/lyra/default.nix

30 lines
757 B

{ lib, stdenv, fetchFromGitHub, installShellFiles, meson, ninja }:
stdenv.mkDerivation rec {
pname = "lyra";
version = "1.6";
src = fetchFromGitHub {
owner = "bfgroup";
repo = "lyra";
rev = version;
sha256 = "sha256-5k4b1JVrGDmT65tSWo6AkqvNpN+6n8wZgqEuXLL7stI=";
};
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 = "A simple to use, composable, command line parser for C++ 11 and beyond";
platforms = platforms.unix;
license = licenses.boost;
maintainers = with maintainers; [ davidtwco ];
};
}