aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/lyra/default.nix
blob: 8d5d083d82b0257d7fbda75a1f9a0bb86b31bde3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, fetchFromGitHub, installShellFiles, meson, ninja }:

stdenv.mkDerivation rec {
  pname = "lyra";
  version = "1.5.1";

  src = fetchFromGitHub {
    owner = "bfgroup";
    repo = "lyra";
    rev = version;
    sha256 = "0xil6b055csnrvxxmby5x9njf166bri472jxwzshc49cz7svhhpk";
  };

  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 ];
  };
}