Template : Format.
This commit is contained in:
parent
0d10ed219e
commit
5f4ee580e9
|
@ -1,12 +1,11 @@
|
|||
{
|
||||
description = "FMP Android dev environment.";
|
||||
description = "Android dev environment.";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs } @inputs:
|
||||
let
|
||||
outputs = { self, nixpkgs } @inputs: let
|
||||
system = "x86_64-linux";
|
||||
lib = nixpkgs.lib;
|
||||
pkgs = import nixpkgs {
|
||||
|
@ -38,43 +37,9 @@
|
|||
# systemImageTypes = [ "google_apis_playstore" ];
|
||||
};
|
||||
androidSdk = androidComposition.androidsdk;
|
||||
tex = (pkgs.texlive.combine {
|
||||
inherit (pkgs.texlive) scheme-basic
|
||||
amsmath
|
||||
babel
|
||||
capt-of
|
||||
catchfile
|
||||
collection-fontsextra
|
||||
cyrillic
|
||||
dvipng
|
||||
dvisvgm
|
||||
environ
|
||||
etoolbox
|
||||
fancyhdr
|
||||
fontspec
|
||||
geometry
|
||||
hyperref
|
||||
luacode
|
||||
luatexbase
|
||||
montserrat
|
||||
parskip
|
||||
pgf
|
||||
tcolorbox
|
||||
tocloft
|
||||
ulem
|
||||
wrapfig
|
||||
xcolor;
|
||||
|
||||
#(setq org-latex-compiler "lualatex")
|
||||
#(setq org-preview-latex-default-process 'dvisvgm)
|
||||
});
|
||||
in {
|
||||
devShells.${system} = {
|
||||
default = pkgs.mkShell {
|
||||
inputsFrom = with self.devShells.${system}; [ dev doc ];
|
||||
};
|
||||
|
||||
dev = pkgs.mkShell rec {
|
||||
default = pkgs.mkShell rec {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
android-tools
|
||||
androidSdk
|
||||
|
@ -89,17 +54,6 @@
|
|||
LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";
|
||||
ANDROID_SDK_ROOT = "${androidSdk}/libexec/android-sdk/";
|
||||
};
|
||||
|
||||
doc = pkgs.mkShell rec {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
gnumake
|
||||
jdk
|
||||
tex
|
||||
];
|
||||
buildInputs = with pkgs; [];
|
||||
|
||||
JAVA_HOME = "${jdk}";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -5,24 +5,15 @@
|
|||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs } @inputs:
|
||||
let
|
||||
outputs = { self, nixpkgs } @inputs: let
|
||||
system = "x86_64-linux";
|
||||
lib = nixpkgs.lib;
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in {
|
||||
devShells.${system} = {
|
||||
default = pkgs.mkShell {
|
||||
inputsFrom = with self.devShells.${system}; [
|
||||
custom
|
||||
];
|
||||
};
|
||||
|
||||
custom = pkgs.mkShell rec {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
];
|
||||
buildInputs = with pkgs; [
|
||||
];
|
||||
default = pkgs.mkShell rec {
|
||||
nativeBuildInputs = with pkgs; [ ];
|
||||
buildInputs = with pkgs; [ ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -5,8 +5,7 @@
|
|||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs } @inputs:
|
||||
let
|
||||
outputs = { self, nixpkgs } @inputs: let
|
||||
system = "x86_64-linux";
|
||||
lib = nixpkgs.lib;
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
|
@ -45,10 +44,9 @@
|
|||
devShells.${system} = {
|
||||
default = pkgs.mkShell rec {
|
||||
nativeBuildInputs = with pkgs; [
|
||||
gnumake
|
||||
tex
|
||||
];
|
||||
buildInputs = with pkgs; [];
|
||||
buildInputs = with pkgs; [ ];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -5,8 +5,7 @@
|
|||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs } @inputs:
|
||||
let
|
||||
outputs = { self, nixpkgs } @inputs: let
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
lib = nixpkgs.lib;
|
||||
|
|
Reference in a new issue