Initial commit
This commit is contained in:
69
flake.nix
Normal file
69
flake.nix
Normal file
@@ -0,0 +1,69 @@
|
||||
{
|
||||
inputs.nixpkgs.url = "nixpkgs/nixos-24.11";
|
||||
outputs = { self, nixpkgs }: let
|
||||
inherit (nixpkgs) lib;
|
||||
systems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
"x86_64-darwin"
|
||||
"aarch64-darwin"
|
||||
"armv7l-linux"
|
||||
];
|
||||
|
||||
forAllSystems = f: lib.genAttrs systems (system: let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in f system pkgs);
|
||||
in {
|
||||
devShells = forAllSystems (_: pkgs: {
|
||||
default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
flutter
|
||||
|
||||
# https://github.com/NixOS/nixpkgs/issues/341147
|
||||
pkg-config
|
||||
gtk3
|
||||
];
|
||||
};
|
||||
});
|
||||
|
||||
packages = forAllSystems (system: pkgs: let
|
||||
common = {
|
||||
pname = "gergle";
|
||||
version = "0.1.0";
|
||||
src = ./.;
|
||||
autoPubspecLock = ./pubspec.lock;
|
||||
};
|
||||
in {
|
||||
default = self.packages.${system}.linux;
|
||||
linux = pkgs.flutter.buildFlutterApplication (common // {});
|
||||
linux-debug = pkgs.flutter.buildFlutterApplication (common // {
|
||||
flutterMode = "debug";
|
||||
});
|
||||
web = pkgs.flutter.buildFlutterApplication (common // {
|
||||
targetFlutterPlatform = "web";
|
||||
});
|
||||
web-debug = pkgs.flutter.buildFlutterApplication (common // {
|
||||
flutterMode = "debug";
|
||||
targetFlutterPlatform = "web";
|
||||
});
|
||||
});
|
||||
|
||||
apps = forAllSystems (system: pkgs: {
|
||||
default = self.apps.${system}.web;
|
||||
|
||||
web = {
|
||||
type = "app";
|
||||
program = toString (pkgs.writeShellScript "gergle-web" ''
|
||||
${pkgs.python3}/bin/python -m http.server -d ${self.packages.${system}.web}/
|
||||
'');
|
||||
};
|
||||
|
||||
web-debug = {
|
||||
type = "app";
|
||||
program = toString (pkgs.writeShellScript "gergle-web-debug" ''
|
||||
${pkgs.python3}/bin/python -m http.server -d ${self.packages.${system}.web-debug}/
|
||||
'');
|
||||
};
|
||||
});
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user