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

Commits on Mar 29, 2019

  1. cmocka: 1.1.3 -> 1.1.5

    https://gitlab.com/cmocka/cmocka/tags/cmocka-1.1.5
    slightly more descriptive note about the release
    on https://cmocka.org but not easy to link.
    dtzWill committed Mar 29, 2019
    Copy the full SHA
    658d891 View commit details
  2. Merge pull request #58521 from dtzWill/update/cmocka-1.1.15

    cmocka: 1.1.3 -> 1.1.5
    rasendubi authored Mar 29, 2019
    Copy the full SHA
    5b0dc3c View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/cmocka/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/cmocka/default.nix
Original file line number Diff line number Diff line change
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
pname = "cmocka";
majorVersion = "1.1";
version = "${majorVersion}.3";
version = "${majorVersion}.5";

src = fetchurl {
url = "https://cmocka.org/files/${majorVersion}/cmocka-${version}.tar.xz";
sha256 = "1bxzzafjlwzgldcb07hjnlnqvh88wh21r2kw7z8f704w5bvvrsj3";
sha256 = "1dm8pdvkyfa8dsbz9bpq7wwgixjij4sii9bbn5sgvqjm5ljdik7h";
};

nativeBuildInputs = [ cmake ];