aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/lyra/default.nix
blob: c0220e6e21db3682e85b0c5880a97ccfb488e2c9 (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.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 ];
  };
}