Unverified Commit 038db58a authored by Stanisław Pitucha's avatar Stanisław Pitucha Committed by GitHub
Browse files

simpleini: 4.22 -> 4.25 (#501862)

parents 30d7949d c51ee14c
Loading
Loading
Loading
Loading
+3 −11
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  cmake,
  gtest,
  nix-update-script,
@@ -10,14 +9,14 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "simpleini";
  version = "4.22";
  version = "4.25";

  src = fetchFromGitHub {
    name = "simpleini-sources-${finalAttrs.version}";
    owner = "brofield";
    repo = "simpleini";
    tag = "v${finalAttrs.version}";
    hash = "sha256-H4J4+v/3A8ZTOp4iMeiZ0OClu68oP4vUZ8YOFZbllcM=";
    hash = "sha256-1JTVjMfEuWqlyYAm4Er6HPjrP2Tnt0ntai8oVvIEOu0=";
  };

  nativeBuildInputs = [
@@ -32,14 +31,6 @@ stdenv.mkDerivation (finalAttrs: {

  cmakeFlags = [ (lib.cmakeBool "SIMPLEINI_USE_SYSTEM_GTEST" true) ];

  patches = [
    # Fixes for cmake export from master, can be removed after the next release
    (fetchpatch {
      url = "https://github.com/brofield/simpleini/commit/aeacf861a8ad8add5f4974792a88ffea393e41db.patch";
      hash = "sha256-lpoQHff8JwfljMUxL6Y2MqsGDZtDPjnOIKSIJ1rqrAI=";
    })
  ];

  passthru.updateScript = nix-update-script { };

  meta = {
@@ -55,6 +46,7 @@ stdenv.mkDerivation (finalAttrs: {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      HeitorAugustoLN
      miniharinn
    ];
    platforms = lib.platforms.all;
  };