summary refs log tree commit diff
diff options
context:
space:
mode:
authorRafael Fernández López <ereslibre@ereslibre.es>2023-08-14 16:22:46 +0200
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-08-16 16:52:51 +0000
commit75f0aff870517d34baf8a3af1ef90dfff63e9129 (patch)
treea3d05ae25e48247c89b67851c3b6722ee3273bd7
parentc72815391d85b2e2068088cc180744d4990512b0 (diff)
downloadnixpkgs-75f0aff870517d34baf8a3af1ef90dfff63e9129.tar
nixpkgs-75f0aff870517d34baf8a3af1ef90dfff63e9129.tar.gz
nixpkgs-75f0aff870517d34baf8a3af1ef90dfff63e9129.tar.bz2
nixpkgs-75f0aff870517d34baf8a3af1ef90dfff63e9129.tar.lz
nixpkgs-75f0aff870517d34baf8a3af1ef90dfff63e9129.tar.xz
nixpkgs-75f0aff870517d34baf8a3af1ef90dfff63e9129.tar.zst
nixpkgs-75f0aff870517d34baf8a3af1ef90dfff63e9129.zip
unison: M5b -> M5c
-rw-r--r--pkgs/development/compilers/unison/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/compilers/unison/default.nix b/pkgs/development/compilers/unison/default.nix
index f34992c8a36..ad2a80551dc 100644
--- a/pkgs/development/compilers/unison/default.nix
+++ b/pkgs/development/compilers/unison/default.nix
@@ -11,17 +11,17 @@
 
 stdenv.mkDerivation (finalAttrs: {
   pname = "unison-code-manager";
-  version = "M5b";
+  version = "M5c";
 
   src = if stdenv.isDarwin then
     fetchurl {
       url = "https://github.com/unisonweb/unison/releases/download/release/${finalAttrs.version}/ucm-macos.tar.gz";
-      hash = "sha256-Uknt1NrywmGs8YovlnN8TU8iaYgT1jeYP4SQCuK1u+I=";
+      hash = "sha256-LTpsKwiV0ZxReLcuzoJYuMP1jN6v8M/z6mUqH9s5A+g=";
     }
   else
     fetchurl {
       url = "https://github.com/unisonweb/unison/releases/download/release/${finalAttrs.version}/ucm-linux.tar.gz";
-      hash = "sha256-CZLGA4fFFysxHkwedC8RBLmHWwr3BM8xqps7hN3TC/g=";
+      hash = "sha256-6gSX8HOv/K4zFTz1O4VvrpWR9+iQyLOO6vIRv6oVw/c=";
     };
 
   # The tarball is just the prebuilt binary, in the archive root.
@@ -46,8 +46,9 @@ stdenv.mkDerivation (finalAttrs: {
     description = "Modern, statically-typed purely functional language";
     homepage = "https://unisonweb.org/";
     license = with licenses; [ mit bsd3 ];
+    mainProgram = "ucm";
     maintainers = [ maintainers.virusdave ];
     platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-darwin" ];
-    mainProgram = "ucm";
+    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
   };
 })