2022-11-05 11:51:36 +00:00
|
|
|
{
|
2022-11-05 11:53:23 +00:00
|
|
|
description = "moxxmpp";
|
2022-11-05 11:51:36 +00:00
|
|
|
inputs = {
|
2023-03-08 19:47:49 +00:00
|
|
|
nixpkgs.url = "github:AtaraxiaSjel/nixpkgs/update/flutter";
|
2023-04-02 15:20:14 +00:00
|
|
|
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
2022-11-05 11:51:36 +00:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
};
|
|
|
|
|
2023-04-02 15:20:14 +00:00
|
|
|
outputs = { self, nixpkgs, nixpkgs-unstable, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let
|
2022-11-05 11:51:36 +00:00
|
|
|
pkgs = import nixpkgs {
|
|
|
|
inherit system;
|
|
|
|
config = {
|
|
|
|
android_sdk.accept_license = true;
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
|
|
|
};
|
2023-04-02 15:20:14 +00:00
|
|
|
unstable = import nixpkgs-unstable {
|
|
|
|
inherit system;
|
|
|
|
};
|
2022-11-05 11:51:36 +00:00
|
|
|
android = pkgs.androidenv.composeAndroidPackages {
|
|
|
|
# TODO: Find a way to pin these
|
|
|
|
#toolsVersion = "26.1.1";
|
|
|
|
#platformToolsVersion = "31.0.3";
|
|
|
|
#buildToolsVersions = [ "31.0.0" ];
|
|
|
|
#includeEmulator = true;
|
|
|
|
#emulatorVersion = "30.6.3";
|
|
|
|
platformVersions = [ "28" ];
|
|
|
|
includeSources = false;
|
|
|
|
includeSystemImages = true;
|
|
|
|
systemImageTypes = [ "default" ];
|
|
|
|
abiVersions = [ "x86_64" ];
|
|
|
|
includeNDK = false;
|
|
|
|
useGoogleAPIs = false;
|
|
|
|
useGoogleTVAddOns = false;
|
|
|
|
};
|
2023-03-10 22:13:18 +00:00
|
|
|
pinnedJDK = pkgs.jdk17;
|
2023-01-28 14:22:37 +00:00
|
|
|
|
|
|
|
pythonEnv = pkgs.python3.withPackages (ps: with ps; [
|
|
|
|
pyyaml
|
|
|
|
requests
|
|
|
|
]);
|
|
|
|
|
|
|
|
moxxmppPubCache = import ./nix/pubcache.moxxmpp.nix {
|
|
|
|
inherit (pkgs) fetchzip runCommand;
|
|
|
|
};
|
2022-11-05 11:51:36 +00:00
|
|
|
in {
|
2023-01-28 14:22:37 +00:00
|
|
|
packages = {
|
|
|
|
moxxmppDartDocs = pkgs.callPackage ./nix/moxxmpp-docs.nix {
|
|
|
|
inherit (moxxmppPubCache) pubCache;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-04-02 15:20:14 +00:00
|
|
|
devShell = let
|
|
|
|
prosody-newer-community-modules = unstable.prosody.overrideAttrs (old: {
|
|
|
|
communityModules = pkgs.fetchhg {
|
|
|
|
url = "https://hg.prosody.im/prosody-modules";
|
|
|
|
rev = "e3a3a6c86a9f";
|
|
|
|
sha256 = "sha256-C2x6PCv0sYuj4/SroDOJLsNPzfeNCodYKbMqmNodFrk=";
|
|
|
|
};
|
|
|
|
|
|
|
|
src = pkgs.fetchhg {
|
|
|
|
url = "https://hg.prosody.im/trunk";
|
|
|
|
rev = "8a2f75e38eb2";
|
|
|
|
sha256 = "sha256-zMNp9+wQ/hvUVyxFl76DqCVzQUPP8GkNdstiTDkG8Hw=";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
prosody-sasl2 = prosody-newer-community-modules.override {
|
|
|
|
withCommunityModules = [
|
|
|
|
"sasl2" "sasl2_fast" "sasl2_sm" "sasl2_bind2"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
in pkgs.mkShell {
|
2022-11-05 11:51:36 +00:00
|
|
|
buildInputs = with pkgs; [
|
2023-01-28 14:31:36 +00:00
|
|
|
flutter pinnedJDK android.platform-tools dart # Dart
|
2022-11-05 11:53:23 +00:00
|
|
|
gitlint # Code hygiene
|
2023-01-28 14:22:37 +00:00
|
|
|
ripgrep # General utilities
|
2022-11-07 22:20:45 +00:00
|
|
|
|
2023-01-28 14:22:37 +00:00
|
|
|
# Flutter dependencies for Linux desktop
|
2022-11-07 22:20:45 +00:00
|
|
|
atk
|
|
|
|
cairo
|
|
|
|
clang
|
|
|
|
cmake
|
|
|
|
epoxy
|
|
|
|
gdk-pixbuf
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
harfbuzz
|
|
|
|
ninja
|
|
|
|
pango
|
|
|
|
pcre
|
|
|
|
pkg-config
|
|
|
|
xorg.libX11
|
|
|
|
xorg.xorgproto
|
2023-01-28 14:22:37 +00:00
|
|
|
|
2023-01-28 14:31:36 +00:00
|
|
|
# For the scripts in ./scripts/
|
2023-01-28 14:22:37 +00:00
|
|
|
pythonEnv
|
2023-04-02 15:20:14 +00:00
|
|
|
|
|
|
|
# For integration testing against a local prosody server
|
|
|
|
prosody-sasl2
|
|
|
|
mkcert
|
2022-11-05 11:51:36 +00:00
|
|
|
];
|
|
|
|
|
2022-11-07 22:20:45 +00:00
|
|
|
CPATH = "${pkgs.xorg.libX11.dev}/include:${pkgs.xorg.xorgproto}/include";
|
2022-11-08 13:22:12 +00:00
|
|
|
LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [ atk cairo epoxy gdk-pixbuf glib gtk3 harfbuzz pango ];
|
2022-11-07 22:20:45 +00:00
|
|
|
|
2022-11-05 11:51:36 +00:00
|
|
|
JAVA_HOME = pinnedJDK;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|