lyra: init at 1.1
Signed-off-by: David Wood <david@davidtw.co>
This commit is contained in:
parent
54cbe01782
commit
0ce1b1a380
32
pkgs/development/libraries/lyra/default.nix
Normal file
32
pkgs/development/libraries/lyra/default.nix
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, installShellFiles, meson, ninja }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "lyra";
|
||||||
|
version = "1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bfgroup";
|
||||||
|
repo = "lyra";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "1wcwsmg41bmjir6pjrjxrwccqj25d9068ifi9m6xz6q3fhaq6s81";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -13311,6 +13311,8 @@ in
|
|||||||
asciidoc = asciidoc-full;
|
asciidoc = asciidoc-full;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
lyra = callPackage ../development/libraries/lyra { };
|
||||||
|
|
||||||
lzo = callPackage ../development/libraries/lzo { };
|
lzo = callPackage ../development/libraries/lzo { };
|
||||||
|
|
||||||
opencl-clang = callPackage ../development/libraries/opencl-clang { };
|
opencl-clang = callPackage ../development/libraries/opencl-clang { };
|
||||||
|
Loading…
Reference in New Issue
Block a user