Unverified Commit be1019b3 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

jrl-cmakemodules: 1.1.0 -> 1.1.2 (#472397)

parents 8050071f c66d5d98
Loading
Loading
Loading
Loading
+2 −12
Original line number Diff line number Diff line
@@ -2,31 +2,21 @@
  lib,
  stdenv,
  fetchFromGitHub,
  fetchpatch,
  nix-update-script,
  cmake,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "jrl-cmakemodules";
  version = "1.1.0";
  version = "1.1.2";

  src = fetchFromGitHub {
    owner = "jrl-umi3218";
    repo = "jrl-cmakemodules";
    tag = "v${finalAttrs.version}";
    hash = "sha256-WQiAAexshQ4zgaBNo/CD91XV+PAeoPZatmehSA14aPM=";
    hash = "sha256-TUewcxvBGYF3WpqkiWvZzmbyXyaM+UqzHLVsaUJdC0w=";
  };

  patches = [
    # ref. https://github.com/jrl-umi3218/jrl-cmakemodules/pull/783
    (fetchpatch {
      name = "fix-permissions.patch";
      url = "https://github.com/jrl-umi3218/jrl-cmakemodules/commit/defed70c8a7c5e4bd5b26006bef26e3fb22c3b26.patch";
      hash = "sha256-muO6DwQhNPCv6DPmnHnEHjsh/FSj0ljgNCb+ZowLRaY=";
    })
  ];

  nativeBuildInputs = [ cmake ];

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