located with `rg '^ *\.\.\.$' -tnix -l pkgs | xargs grep @ -L | grep -E '/(default|package)\.nix$'`
34 lines
646 B
Nix
34 lines
646 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
callPackage,
|
|
}:
|
|
let
|
|
pname = "aptakube";
|
|
version = "1.11.10";
|
|
meta = {
|
|
homepage = "https://aptakube.com/";
|
|
description = "Modern, lightweight and multi-cluster Kubernetes GUI";
|
|
license = lib.licenses.unfree;
|
|
maintainers = [ lib.maintainers.juliamertz ];
|
|
platforms = lib.platforms.darwin ++ [ "x86_64-linux" ];
|
|
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
|
};
|
|
in
|
|
if stdenv.hostPlatform.isDarwin then
|
|
callPackage ./darwin.nix {
|
|
inherit
|
|
pname
|
|
version
|
|
meta
|
|
;
|
|
}
|
|
else
|
|
callPackage ./linux.nix {
|
|
inherit
|
|
pname
|
|
version
|
|
meta
|
|
;
|
|
}
|