From 28ddfd8f2475f05d65806d318f4bde7df7b880c5 Mon Sep 17 00:00:00 2001 From: kilyanni Date: Tue, 24 Feb 2026 01:13:55 +0100 Subject: [PATCH] unified-memory-framework: 1.0.3 -> 1.1.0 --- .../by-name/un/unified-memory-framework/package.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/by-name/un/unified-memory-framework/package.nix b/pkgs/by-name/un/unified-memory-framework/package.nix index a41bf4644056..d384de438bd7 100644 --- a/pkgs/by-name/un/unified-memory-framework/package.nix +++ b/pkgs/by-name/un/unified-memory-framework/package.nix @@ -1,7 +1,6 @@ { stdenv, fetchFromGitHub, - fetchpatch, lib, cmake, ninja, @@ -25,7 +24,7 @@ }: stdenv.mkDerivation (finalAttrs: { pname = "unified-memory-framework"; - version = "1.0.3"; + version = "1.1.0"; nativeBuildInputs = [ cmake @@ -60,17 +59,9 @@ stdenv.mkDerivation (finalAttrs: { owner = "oneapi-src"; repo = "unified-memory-framework"; tag = "v${finalAttrs.version}"; - hash = "sha256-j7qQwBetICf1sTz+ssZQLm9P0SiH68lcEvtV1YLuW5s="; + hash = "sha256-1Z65rNsUNeaeSJmxwpEHPbiU4KEDvyrWL9LyAWFsR1c="; }; - patches = [ - (fetchpatch { - name = "gtest-use-find_package.patch"; - url = "https://github.com/oneapi-src/unified-memory-framework/commit/503d302a72f719a3f11fce0e610f07a3793549d9.patch"; - hash = "sha256-T29pJuWGcj/Kfw3VNW5lNBG5OrBsB1UAvwroQ+km4Vs="; - }) - ]; - postPatch = '' # The CMake tries to find out the version via git. # Since we're not in a clone, git describe won't work.