summary refs log tree commit diff
path: root/pkgs/servers/meteor
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-19 11:04:12 +0000
committerJon <jonringer@users.noreply.github.com>2020-03-24 11:14:44 -0700
commitb7ae4d6bf8afc423b66d06d18948617a5f18c22a (patch)
tree45ed31ebd355ead7be10b73eeea08618de853bdf /pkgs/servers/meteor
parent1717c2f02efb20398efc172f8d865814b8a4980b (diff)
downloadnixpkgs-b7ae4d6bf8afc423b66d06d18948617a5f18c22a.tar
nixpkgs-b7ae4d6bf8afc423b66d06d18948617a5f18c22a.tar.gz
nixpkgs-b7ae4d6bf8afc423b66d06d18948617a5f18c22a.tar.bz2
nixpkgs-b7ae4d6bf8afc423b66d06d18948617a5f18c22a.tar.lz
nixpkgs-b7ae4d6bf8afc423b66d06d18948617a5f18c22a.tar.xz
nixpkgs-b7ae4d6bf8afc423b66d06d18948617a5f18c22a.tar.zst
nixpkgs-b7ae4d6bf8afc423b66d06d18948617a5f18c22a.zip
meteor: 1.8.2 -> 1.9.3
Diffstat (limited to 'pkgs/servers/meteor')
-rw-r--r--pkgs/servers/meteor/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/meteor/default.nix b/pkgs/servers/meteor/default.nix
index c2f0ffa59b9..b6abec241a5 100644
--- a/pkgs/servers/meteor/default.nix
+++ b/pkgs/servers/meteor/default.nix
@@ -1,7 +1,7 @@
 { stdenv, lib, fetchurl, zlib, patchelf, runtimeShell }:
 
 let
-  version = "1.8.2";
+  version = "1.9.3";
 in
 
 stdenv.mkDerivation {
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
   pname = "meteor";
   src = fetchurl {
     url = "https://static-meteor.netdna-ssl.com/packages-bootstrap/${version}/meteor-bootstrap-os.linux.x86_64.tar.gz";
-    sha256 = "1pydmwx1yjbw54qfq7ndw2l3i3v302bvasvf71x4y9572r2p99mp";
+    sha256 = "1njp2db939w3ah5k943bkgm62k969fj47qwmlzvhmmg87xwnq3fb";
   };
 
   #dontStrip = true;
@@ -82,7 +82,7 @@ stdenv.mkDerivation {
 
   meta = with lib; {
     description = "Complete open source platform for building web and mobile apps in pure JavaScript";
-    homepage = http://www.meteor.com;
+    homepage = "http://www.meteor.com";
     license = licenses.mit;
     platforms = [ "x86_64-linux" ];
     maintainers = with maintainers; [ cstrahan ];