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: ee9a7177baa5
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2b2509a19afa
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 8, 2020

  1. cereal: 1.2.2 -> 1.3.0

    tbenst committed Jan 8, 2020
    Copy the full SHA
    f07fb2f View commit details

Commits on Jan 9, 2020

  1. Merge pull request #77330 from tbenst/cereal

    cereal: 1.2.2 -> 1.3.0
    marsam authored Jan 9, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2b2509a View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/cereal/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/cereal/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "cereal";
version = "1.2.2";
version = "1.3.0";

nativeBuildInputs = [ cmake ];

src = fetchFromGitHub {
owner = "USCiLab";
repo = "cereal";
rev = "v${version}";
sha256 = "1ckr8r03ggg5pyzg8yw40d5ssq40h5najvyqlnxc85fxxp8rnrx4";
sha256 = "0hc8wh9dwpc1w1zf5lfss4vg5hmgpblqxbrpp1rggicpx9ar831p";
};

cmakeFlagsArray = [ "-DJUST_INSTALL_CEREAL=yes" ];