about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorBrian McKenna <bmckenna@atlassian.com>2019-11-14 05:20:09 +0530
committerRenaud <c0bw3b@users.noreply.github.com>2019-11-14 00:50:09 +0100
commit07829a0c923b7232d5e313cea47b3481e4ebd079 (patch)
treecd23655d67823ba000b5055ff4f85a715517a67c /pkgs
parentfcb5d7ebf8c3877a78dc9b1633bae25a9a8fb86d (diff)
unison-ucm: 1.0.M1d-alpha -> 1.0.M1e-alpha
* unison-ucm: 1.0.M1d-alpha -> 1.0.M1e-alpha (#72279)

* unison-ucm: refresh meta
homepage and licenses
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/compilers/unison/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/compilers/unison/default.nix b/pkgs/development/compilers/unison/default.nix
index d4e536484c46b..90dd233a2bbe1 100644
--- a/pkgs/development/compilers/unison/default.nix
+++ b/pkgs/development/compilers/unison/default.nix
@@ -4,18 +4,18 @@
 
 stdenv.mkDerivation rec {
   pname = "unison-code-manager";
-  milestone_id = "M1d";
+  milestone_id = "M1e";
   version = "1.0.${milestone_id}-alpha";
 
   src = if (stdenv.isDarwin) then
     fetchurl {
       url = "https://github.com/unisonweb/unison/releases/download/release/${milestone_id}/unison-osx.tar.gz";
-      sha256 = "0cgkqwniw2fclsxgx6b1kgjmylqnn67kjs61iygzbpip8nvcm7pv";
+      sha256 = "1jcjc8drjnvr67174ym9cppzi5zdq7jrj98xmf8gvrbx45v2gc6h";
     }
   else
     fetchurl {
       url = "https://github.com/unisonweb/unison/releases/download/release/${milestone_id}/unison-linux64.tar.gz";
-      sha256 = "0rpz40d23daad16r2s4appiay3brbk0awp38yamavlr6dh23c9ws";
+      sha256 = "1jq6xx879lqv3hxq8azg1rp72hy63qsn5w9nx95i4dzmmgwp0xx1";
     };
 
   # The tarball is just the prebuilt binary, in the archive root.
@@ -33,8 +33,8 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Modern, statically-typed purely functional language";
-    homepage = http://unisonweb.org/posts/;
-    license = licenses.free;
+    homepage = https://unisonweb.org/;
+    license = with licenses; [ mit bsd3 ];
     maintainers = [ maintainers.virusdave ];
     platforms = [ "x86_64-darwin" "x86_64-linux" ];
   };