mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-07 06:12:58 +00:00
35 lines
972 B
Nix
35 lines
972 B
Nix
{ lib, stdenv, undmg, fetchurl }:
|
|
let
|
|
common = import ./common.nix { inherit fetchurl; };
|
|
inherit (stdenv.hostPlatform) system;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
inherit (common) pname version;
|
|
src = common.sources.${system} or (throw "Source for ${pname} is not available for ${system}");
|
|
|
|
appName = "Roam Research";
|
|
|
|
sourceRoot = ".";
|
|
|
|
nativeBuildInputs = [ undmg ];
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/Applications"
|
|
cp -R *.app "$out/Applications"
|
|
|
|
mkdir -p $out/bin
|
|
ln -s "$out/Applications/${appName}.app/Contents/MacOS/${appName}" "$out/bin/${appName}"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A note-taking tool for networked thought";
|
|
homepage = "https://roamresearch.com/";
|
|
maintainers = with lib.maintainers; [ dbalan ];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-darwin" "aarch64-darwin" ];
|
|
};
|
|
}
|