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
This commit is contained in:
Brian McKenna 2019-11-14 05:20:09 +05:30 committed by Renaud
parent fcb5d7ebf8
commit 07829a0c92

View File

@ -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" ];
};