about summary refs log tree commit diff
diff options
context:
space:
mode:
authora-n-n-a-l-e-e <150648636+a-n-n-a-l-e-e@users.noreply.github.com>2024-01-18 23:25:42 -0800
committerGitHub <noreply@github.com>2024-01-18 23:25:42 -0800
commitfc00ff355ab4fea966098b2cb87104bd72163384 (patch)
tree6fcb0e6539853d4c4443e27e16d84da626e2d37c
parentaa28799b9d4315e6aed6f30e398b9924f6668f11 (diff)
parentb057e48b2a90422e5e0054b90dbbef11529d024d (diff)
downloadnixlib-fc00ff355ab4fea966098b2cb87104bd72163384.tar
nixlib-fc00ff355ab4fea966098b2cb87104bd72163384.tar.gz
nixlib-fc00ff355ab4fea966098b2cb87104bd72163384.tar.bz2
nixlib-fc00ff355ab4fea966098b2cb87104bd72163384.tar.lz
nixlib-fc00ff355ab4fea966098b2cb87104bd72163384.tar.xz
nixlib-fc00ff355ab4fea966098b2cb87104bd72163384.tar.zst
nixlib-fc00ff355ab4fea966098b2cb87104bd72163384.zip
Merge pull request #279152 from TomaSajt/mlx42
mlx42: 2.3.2 -> 2.3.3
-rw-r--r--pkgs/by-name/ml/mlx42/package.nix16
1 files changed, 2 insertions, 14 deletions
diff --git a/pkgs/by-name/ml/mlx42/package.nix b/pkgs/by-name/ml/mlx42/package.nix
index ac3aaa2200eb..3387dec3378d 100644
--- a/pkgs/by-name/ml/mlx42/package.nix
+++ b/pkgs/by-name/ml/mlx42/package.nix
@@ -11,23 +11,15 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "mlx42";
-  version = "2.3.2";
+  version = "2.3.3";
 
   src = fetchFromGitHub {
     owner = "codam-coding-college";
     repo = "MLX42";
     rev = "v${finalAttrs.version}";
-    hash = "sha256-JCBV8NWibSugqXkbgP0v3gDfaaMNFYztWpBRfHJUG8E=";
+    hash = "sha256-igkTeOnqGYBISzmtDGlDx9cGJjoQ8fzXtVSR9hU4F5E=";
   };
 
-  patches = [
-    (fetchpatch {
-      name = "add-cmake-install.patch";
-      url = "https://github.com/codam-coding-college/MLX42/commit/a51ca8e0ec3fb793fa96d710696dcee8a4fe57d6.patch";
-      hash = "sha256-i+0yHZVvfTG19BGVrz7GuEuBw3B7lylCPEvx07il23M=";
-    })
-  ];
-
   postPatch = ''
     patchShebangs ./tools
   ''
@@ -46,10 +38,6 @@ stdenv.mkDerivation (finalAttrs: {
   postInstall = ''
     mkdir -p $out/lib/pkgconfig
     substituteAll ${./mlx42.pc} $out/lib/pkgconfig/mlx42.pc
-
-    # This file was removed after 2.3.2, so the used patch doesn't copy this file
-    # This line can be removed after the next release
-    cp $src/include/MLX42/MLX42_Input.h $out/include/MLX42
   '';
 
   meta = {