29 lines
921 B
Nix
29 lines
921 B
Nix
{ stdenv, pkgs, target-os, status-go }:
|
|
|
|
with pkgs;
|
|
with stdenv;
|
|
|
|
let
|
|
platform = callPackage ../platform.nix { inherit target-os; };
|
|
linuxPlatform = callPackage ./linux { inherit status-go; };
|
|
darwinPlatform = callPackage ./macos { inherit status-go; };
|
|
windowsPlatform = callPackage ./windows { };
|
|
snoreNotifySources = callPackage ./cmake/snorenotify { };
|
|
qtkeychainSources = callPackage ./cmake/qtkeychain { };
|
|
selectedSources =
|
|
lib.optional platform.targetLinux linuxPlatform ++
|
|
lib.optional platform.targetDarwin darwinPlatform ++
|
|
lib.optional platform.targetWindows windowsPlatform;
|
|
|
|
in
|
|
{
|
|
buildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
file
|
|
snoreNotifySources
|
|
qtkeychainSources
|
|
] ++ lib.catAttrs "buildInputs" selectedSources;
|
|
shellHook = lib.concatStrings (lib.catAttrs "shellHook" (selectedSources ++ [ snoreNotifySources qtkeychainSources ]));
|
|
}
|