depot/pkgs/applications/office/roam-research/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
225 B
Nix
Raw Normal View History

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