mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
37 lines
718 B
Nix
37 lines
718 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "plog";
|
|
version = "1.1.10";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SergiusTheBest";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-NZphrg9OB1FTY2ifu76AXeCyGwW2a2BkxMGjZPf4uM8=";
|
|
};
|
|
|
|
strictDeps = true;
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DPLOG_BUILD_SAMPLES=NO"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Portable, simple and extensible C++ logging library";
|
|
homepage = "https://github.com/SergiusTheBest/plog";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ raphaelr erdnaxe ];
|
|
};
|
|
}
|