summary refs log tree commit diff
path: root/pkgs/development/libraries/cxx-prettyprint/default.nix
blob: 34dc30abe614ea86b5502e92bef126787586d262 (plain) (blame)
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
{ stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "cxx-prettyprint-unstable";
  version = "2016-04-30";
  rev = "9ab26d228f2960f50b38ad37fe0159b7381f7533";

  src = fetchFromGitHub {
    owner = "louisdx";
    repo = "cxx-prettyprint";
    inherit rev;
    sha256 = "1bp25yw8fb0mi432f72ihfxfj887gi36b36fpv677gawm786l7p1";
  };

  installPhase = ''
    mkdir -p "$out/include"
    cp prettyprint.hpp "$out/include"
  '';

  meta = with stdenv.lib; {
    description    = "Header only C++ library for pretty printing standard containers";
    homepage       = "https://github.com/louisdx/cxx-prettyprint";
    license        = stdenv.lib.licenses.boost;
    platforms      = platforms.all;

    # This is a header-only library, no point in hydra building it:
    hydraPlatforms = [];
  };
}