cxx-prettyprint: init at 2016-04-30
This commit is contained in:
parent
392fb9d092
commit
b954322b0f
29
pkgs/development/libraries/cxx-prettyprint/default.nix
Normal file
29
pkgs/development/libraries/cxx-prettyprint/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cxx-prettyprint-unstable-${version}";
|
||||
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 = [];
|
||||
};
|
||||
}
|
@ -7084,6 +7084,8 @@ in
|
||||
|
||||
cwiid = callPackage ../development/libraries/cwiid { };
|
||||
|
||||
cxx-prettyprint = callPackage ../development/libraries/cxx-prettyprint { };
|
||||
|
||||
cyrus_sasl = callPackage ../development/libraries/cyrus-sasl {
|
||||
kerberos = if stdenv.isFreeBSD then libheimdal else kerberos;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user