depot/third_party/nixpkgs/pkgs/by-name/ro/roam-research/package.nix

8 lines
225 B
Nix

{ stdenv, callPackage, ... }@args:
let
extraArgs = removeAttrs args [ "callPackage" ];
in
if stdenv.hostPlatform.isDarwin then
callPackage ./darwin.nix (extraArgs // { })
else
callPackage ./linux.nix (extraArgs // { })