unison: M5b -> M5c

authored by

Rafael Fernández López and committed by
Anderson Torres
75f0aff8 c7281539

+5 -4
+5 -4
pkgs/development/compilers/unison/default.nix
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "unison-code-manager"; 14 - version = "M5b"; 15 16 src = if stdenv.isDarwin then 17 fetchurl { 18 url = "https://github.com/unisonweb/unison/releases/download/release/${finalAttrs.version}/ucm-macos.tar.gz"; 19 - hash = "sha256-Uknt1NrywmGs8YovlnN8TU8iaYgT1jeYP4SQCuK1u+I="; 20 } 21 else 22 fetchurl { 23 url = "https://github.com/unisonweb/unison/releases/download/release/${finalAttrs.version}/ucm-linux.tar.gz"; 24 - hash = "sha256-CZLGA4fFFysxHkwedC8RBLmHWwr3BM8xqps7hN3TC/g="; 25 }; 26 27 # The tarball is just the prebuilt binary, in the archive root. ··· 46 description = "Modern, statically-typed purely functional language"; 47 homepage = "https://unisonweb.org/"; 48 license = with licenses; [ mit bsd3 ]; 49 maintainers = [ maintainers.virusdave ]; 50 platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-darwin" ]; 51 - mainProgram = "ucm"; 52 }; 53 })
··· 11 12 stdenv.mkDerivation (finalAttrs: { 13 pname = "unison-code-manager"; 14 + version = "M5c"; 15 16 src = if stdenv.isDarwin then 17 fetchurl { 18 url = "https://github.com/unisonweb/unison/releases/download/release/${finalAttrs.version}/ucm-macos.tar.gz"; 19 + hash = "sha256-LTpsKwiV0ZxReLcuzoJYuMP1jN6v8M/z6mUqH9s5A+g="; 20 } 21 else 22 fetchurl { 23 url = "https://github.com/unisonweb/unison/releases/download/release/${finalAttrs.version}/ucm-linux.tar.gz"; 24 + hash = "sha256-6gSX8HOv/K4zFTz1O4VvrpWR9+iQyLOO6vIRv6oVw/c="; 25 }; 26 27 # The tarball is just the prebuilt binary, in the archive root. ··· 46 description = "Modern, statically-typed purely functional language"; 47 homepage = "https://unisonweb.org/"; 48 license = with licenses; [ mit bsd3 ]; 49 + mainProgram = "ucm"; 50 maintainers = [ maintainers.virusdave ]; 51 platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-darwin" ]; 52 + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; 53 }; 54 })