about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorChristian Kögler <ck3d@gmx.de>2022-10-03 22:24:40 +0200
committerGitHub <noreply@github.com>2022-10-03 22:24:40 +0200
commit1f69982b865f90ad0c0a3b63803cf22b5477f53b (patch)
tree5dc9eda2ee4234ef8c61cc6c1b0b9f9d187ad8fa /pkgs
parent1cd8332a35f7261dcfec38ac7797ecb5d6b11c54 (diff)
parentcd7bcc91744b8d46b0fb882f5b97ff8f123aa02a (diff)
Merge pull request #194212 from Luflosi/update/nsync
nsync: 1.24.0 -> 1.25.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/nsync/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/development/libraries/nsync/default.nix b/pkgs/development/libraries/nsync/default.nix
index a00893c157326..5a60241894715 100644
--- a/pkgs/development/libraries/nsync/default.nix
+++ b/pkgs/development/libraries/nsync/default.nix
@@ -6,24 +6,26 @@
 
 stdenv.mkDerivation rec {
   pname = "nsync";
-  version = "1.24.0";
+  version = "1.25.0";
 
   src = fetchFromGitHub {
     owner = "google";
     repo = pname;
     rev = version;
-    sha256 = "sha256-jQJtlBDR6efBe1tFOUOZ6awaMTT33qM/GbvbwiWTZxw=";
+    sha256 = "sha256-bdnYrMnBnpnEKGuMlDLILfzgwfu/e5tyMdSDWqreyto=";
   };
 
   nativeBuildInputs = [ cmake ];
 
+  # Needed for case-insensitive filesystems like on macOS
+  # because a file named BUILD exists already.
+  cmakeBuildDir = "build_dir";
+
   meta = {
     homepage = "https://github.com/google/nsync";
     description = "C library that exports various synchronization primitives";
     license = lib.licenses.asl20;
-    maintainers = with lib.maintainers; [ puffnfresh ];
-    # On macOS we get an error for some reason:
-    # > mkdir: cannot create directory 'build': File exists
-    platforms = lib.platforms.linux;
+    maintainers = with lib.maintainers; [ puffnfresh Luflosi ];
+    platforms = lib.platforms.unix;
   };
 }