Skip to content

Commit

Permalink
realm-studio: init at 15.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Matteo Pacini committed Jul 9, 2024
1 parent 12a3f8b commit 6a98104
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/by-name/re/realm-studio/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
stdenvNoCC,
lib,
fetchurl,
unzip,
}:
stdenvNoCC.mkDerivation (finalAttrs: {

pname = "realm-studio";
version = "15.2.1";

src = fetchurl {
url = "https://static.realm.io/downloads/realm-studio/Realm%20Studio-${finalAttrs.version}-mac.zip";
hash = "sha256-Vvc432P7VQxCVcS7i7JwOx7ByhX+Ea0Oz7ogvAH8Xoo=";
};

sourceRoot = ".";

nativeBuildInputs = [ unzip ];

installPhase = ''
runHook preInstall
mkdir -p $out/Applications
cp -r "Realm Studio.app" $out/Applications/
runHook postInstall
'';

meta = {
description = "Visual tool to view, edit, and model Realm databases.";
homepage = "https://www.mongodb.com/docs/atlas/device-sdks/studio/";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ matteopacini ];
platforms = lib.platforms.darwin;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
})

0 comments on commit 6a98104

Please sign in to comment.