Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c98a006c7eea
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 719313b2a255
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 24, 2019

  1. spdlog: 1.3.1 -> 1.4.2 (#71876)

    * spdlog: 1.3.1 -> 1.4.2
    
    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/spdlog/versions
    
    * spdlog: actually disable example build
    r-ryantm authored and c0bw3b committed Oct 24, 2019
    Copy the full SHA
    719313b View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/development/libraries/spdlog/default.nix
12 changes: 6 additions & 6 deletions pkgs/development/libraries/spdlog/default.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
let
generic = { version, sha256 }:
stdenv.mkDerivation {
name = "spdlog-${version}";
pname = "spdlog";
inherit version;

src = fetchFromGitHub {
@@ -15,7 +15,7 @@ let

nativeBuildInputs = [ cmake ];

cmakeFlags = [ "-DSPDLOG_BUILD_EXAMPLES=OFF" "-DSPDLOG_BUILD_BENCH=OFF" ];
cmakeFlags = [ "-DSPDLOG_BUILD_EXAMPLE=OFF" "-DSPDLOG_BUILD_BENCH=OFF" ];

outputs = [ "out" "doc" ];

@@ -25,8 +25,8 @@ let
'';

meta = with stdenv.lib; {
description = "Very fast, header only, C++ logging library.";
homepage = https://github.com/gabime/spdlog;
description = "Very fast, header only, C++ logging library";
homepage = "https://github.com/gabime/spdlog";
license = licenses.mit;
maintainers = with maintainers; [ obadz ];
platforms = platforms.all;
@@ -35,8 +35,8 @@ let
in
{
spdlog_1 = generic {
version = "1.3.1";
sha256 = "1rd4zmrlkcdjx0m0wpmjm1g9srj7jak6ai08qkhbn2lsn0niifzd";
version = "1.4.2";
sha256 = "1qc3rphvik44136ms0gjq2wmkl6qglri4fqxlhr2l5jwm8zhr8fc";
};

spdlog_0 = generic {