mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 11:03:57 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
36 lines
1003 B
Nix
36 lines
1003 B
Nix
{ lib, stdenv, _7zz, 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 = [ _7zz ];
|
|
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 = "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" ];
|
|
mainProgram = "roam-research";
|
|
};
|
|
}
|