stylelint: 16.9.0 -> 16.11.0 (#360524)
[NixPkgs.git] / pkgs / by-name / pl / plog / package.nix
blob45b0fa49a1ab5ab6d099be78d0c77779ffe5dc94
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 }:
7 stdenv.mkDerivation rec {
8   pname = "plog";
9   version = "1.1.10";
11   outputs = [ "out" "dev" ];
13   src = fetchFromGitHub {
14     owner = "SergiusTheBest";
15     repo = pname;
16     rev = version;
17     hash = "sha256-NZphrg9OB1FTY2ifu76AXeCyGwW2a2BkxMGjZPf4uM8=";
18   };
20   strictDeps = true;
21   nativeBuildInputs = [
22     cmake
23   ];
25   cmakeFlags = [
26     "-DPLOG_BUILD_SAMPLES=NO"
27   ];
29   meta = with lib; {
30     description = "Portable, simple and extensible C++ logging library";
31     homepage = "https://github.com/SergiusTheBest/plog";
32     license = licenses.mit;
33     platforms = platforms.linux ++ platforms.darwin;
34     maintainers = with maintainers; [ raphaelr erdnaxe ];
35   };